Add Score board page to visualize progress of exercises

This commit is contained in:
2024-09-22 21:29:23 +02:00
parent 564cf144ff
commit 8b4db9ccc8
7 changed files with 132 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import ProductsPage from "@/pages/productsPage/index.vue";
import LoginPage from "@/pages/loginPage/index.vue"
import BasketPage from "@/pages/basketPage/index.vue"
import HelpPage from "@/pages/helpPage/index.vue"
import ScoreBoardPage from "@/pages/scoreBoardPage/index.vue"
const routes = [
{ path: '/', component: ProductsPage },
@@ -13,6 +14,7 @@ const routes = [
{ path: '/preferences', component: PreferencesPage },
{ path: '/login', component: LoginPage },
{ path: '/basket', component: BasketPage },
{ path: '/scoreboard', component: ScoreBoardPage },
{ path: '/help', component: HelpPage }
]