Files
front/components/LobbyView.vue
T
legonzaur 0c650dafc8
release-tag / release-image (push) Successful in 58s
Multiples games in parallel
2024-05-11 18:16:36 +02:00

10 lines
309 B
Vue

<script setup lang="ts">
import goStore, { netcode_create_game, join_game } from '~/netcode';
</script>
<template>
<button @click="netcode_create_game">Create Game</button>
<div v-for="g in goStore.lobby?.games"><button @click="join_game(g)">{{ g }}</button></div>
</template>
<style scoped></style>