From 755a6f38212b61e605f1c3863f2d2380fd4a1a03 Mon Sep 17 00:00:00 2001
From: Pandipipas <62224708+Pandipipas@users.noreply.github.com>
Date: Sun, 8 Feb 2026 20:38:39 +0100
Subject: [PATCH] Remove scoreboard route
---
src/dashboard/example/main.vue | 1 -
src/dashboard/example/router.ts | 2 --
src/dashboard/example/views/Scoreboard.vue | 12 ------------
3 files changed, 15 deletions(-)
delete mode 100644 src/dashboard/example/views/Scoreboard.vue
diff --git a/src/dashboard/example/main.vue b/src/dashboard/example/main.vue
index 1579589..e41b596 100644
--- a/src/dashboard/example/main.vue
+++ b/src/dashboard/example/main.vue
@@ -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' },
diff --git a/src/dashboard/example/router.ts b/src/dashboard/example/router.ts
index bff8157..dd90558 100644
--- a/src/dashboard/example/router.ts
+++ b/src/dashboard/example/router.ts
@@ -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 },
diff --git a/src/dashboard/example/views/Scoreboard.vue b/src/dashboard/example/views/Scoreboard.vue
deleted file mode 100644
index bc2fb0f..0000000
--- a/src/dashboard/example/views/Scoreboard.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-