36 lines
773 B
Vue
36 lines
773 B
Vue
<template>
|
|
<EditorComponent/>
|
|
|
|
<!-- <GameList :game="yakuza" :edit-mode="true"/> -->
|
|
|
|
|
|
<!-- <q-dialog v-model="dialog">
|
|
<q-card style="min-width: 700px; max-width: 80vw; min-height: 10vh; max-height: 80vh;">
|
|
<GoalEditorDialog :tags="tags"/>
|
|
</q-card>
|
|
</q-dialog> -->
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// import type BingoGame from '@/js/lib/BingoGame.ts';
|
|
|
|
// import {
|
|
// useLocalGamesStore
|
|
// } from '@/stores/local-games.ts';
|
|
// const localGames = useLocalGamesStore();
|
|
|
|
// const yakuza = ref();
|
|
// onMounted(async() => {
|
|
// await localGames.fetchGames();
|
|
|
|
// yakuza.value = localGames.games[0];
|
|
// console.log(yakuza.value);
|
|
// });
|
|
|
|
|
|
// const dialog = ref<boolean>(false);
|
|
// const selected_game = ref<BingoGame | undefined>();
|
|
|
|
|
|
</script>
|