mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
13 lines
259 B
Vue
13 lines
259 B
Vue
<script setup lang="ts">
|
|
import { useHead } from '@unhead/vue';
|
|
import ScoreboardPanel from '../components/ScoreboardPanel.vue';
|
|
|
|
useHead({ title: 'Scoreboard' });
|
|
</script>
|
|
|
|
<template>
|
|
<QPage class="q-pa-lg">
|
|
<ScoreboardPanel />
|
|
</QPage>
|
|
</template>
|