Remove scoreboard route

This commit is contained in:
Pandipipas
2026-02-08 20:38:39 +01:00
parent c5c870ae5b
commit 755a6f3821
3 changed files with 0 additions and 15 deletions
-1
View File
@@ -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' },
-2
View File
@@ -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>