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 = [
|
const menuItems = [
|
||||||
{ label: 'Dashboard', to: '/', icon: 'dashboard' },
|
{ label: 'Dashboard', to: '/', icon: 'dashboard' },
|
||||||
{ label: 'Players', to: '/players', icon: 'groups' },
|
{ label: 'Players', to: '/players', icon: 'groups' },
|
||||||
{ label: 'Scoreboard', to: '/scoreboard', icon: 'scoreboard' },
|
|
||||||
{ label: 'Graphics', to: '/graphics', icon: 'collections' },
|
{ label: 'Graphics', to: '/graphics', icon: 'collections' },
|
||||||
{ label: 'Settings', to: '/settings', icon: 'settings' },
|
{ label: 'Settings', to: '/settings', icon: 'settings' },
|
||||||
{ label: 'About', to: '/about', icon: 'info' },
|
{ label: 'About', to: '/about', icon: 'info' },
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import AboutView from './views/About.vue';
|
|||||||
import DashboardView from './views/Dashboard.vue';
|
import DashboardView from './views/Dashboard.vue';
|
||||||
import GraphicsView from './views/Graphics.vue';
|
import GraphicsView from './views/Graphics.vue';
|
||||||
import PlayersView from './views/Players.vue';
|
import PlayersView from './views/Players.vue';
|
||||||
import ScoreboardView from './views/Scoreboard.vue';
|
|
||||||
import SettingsView from './views/Settings.vue';
|
import SettingsView from './views/Settings.vue';
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
@@ -11,7 +10,6 @@ const router = createRouter({
|
|||||||
routes: [
|
routes: [
|
||||||
{ path: '/', name: 'dashboard', component: DashboardView },
|
{ path: '/', name: 'dashboard', component: DashboardView },
|
||||||
{ path: '/players', name: 'players', component: PlayersView },
|
{ path: '/players', name: 'players', component: PlayersView },
|
||||||
{ path: '/scoreboard', name: 'scoreboard', component: ScoreboardView },
|
|
||||||
{ path: '/graphics', name: 'graphics', component: GraphicsView },
|
{ path: '/graphics', name: 'graphics', component: GraphicsView },
|
||||||
{ path: '/settings', name: 'settings', component: SettingsView },
|
{ path: '/settings', name: 'settings', component: SettingsView },
|
||||||
{ path: '/about', name: 'about', component: AboutView },
|
{ 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