10 lines
309 B
Vue
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> |