mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
Remove scoreboard route
This commit is contained in:
@@ -7,7 +7,6 @@ const route = useRoute();
|
||||
const menuItems = [
|
||||
{ label: 'Dashboard', to: '/', icon: 'dashboard' },
|
||||
{ label: 'Players', to: '/players', icon: 'groups' },
|
||||
{ label: 'Scoreboard', to: '/scoreboard', icon: 'scoreboard' },
|
||||
{ label: 'Graphics', to: '/graphics', icon: 'collections' },
|
||||
{ label: 'Settings', to: '/settings', icon: 'settings' },
|
||||
{ label: 'About', to: '/about', icon: 'info' },
|
||||
|
||||
@@ -3,7 +3,6 @@ import AboutView from './views/About.vue';
|
||||
import DashboardView from './views/Dashboard.vue';
|
||||
import GraphicsView from './views/Graphics.vue';
|
||||
import PlayersView from './views/Players.vue';
|
||||
import ScoreboardView from './views/Scoreboard.vue';
|
||||
import SettingsView from './views/Settings.vue';
|
||||
|
||||
const router = createRouter({
|
||||
@@ -11,7 +10,6 @@ const router = createRouter({
|
||||
routes: [
|
||||
{ path: '/', name: 'dashboard', component: DashboardView },
|
||||
{ path: '/players', name: 'players', component: PlayersView },
|
||||
{ path: '/scoreboard', name: 'scoreboard', component: ScoreboardView },
|
||||
{ path: '/graphics', name: 'graphics', component: GraphicsView },
|
||||
{ path: '/settings', name: 'settings', component: SettingsView },
|
||||
{ path: '/about', name: 'about', component: AboutView },
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user