added router for jackop-history

This commit is contained in:
Kostya
2024-03-31 20:52:37 +03:00
parent 31a83bba1d
commit 7c0616710d
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
t<template>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@@ -6,6 +6,7 @@ import SapergamePage from "@/pages/games-pages/SapergamePage.vue";
import SettingsPage from "@/pages/SettingsPage.vue"; import SettingsPage from "@/pages/SettingsPage.vue";
import CrashGamePage from "@/pages/games-pages/CrashgamePage.vue"; import CrashGamePage from "@/pages/games-pages/CrashgamePage.vue";
import JackpotPage from "@/pages/games-pages/JackpotPage.vue"; import JackpotPage from "@/pages/games-pages/JackpotPage.vue";
import JackopthistoryPage from "@/pages/JackopthistoryPage.vue";
import AboutPage from "@/pages/AboutPage.vue"; import AboutPage from "@/pages/AboutPage.vue";
import HelpPage from "@/pages/HelpPage.vue" ; import HelpPage from "@/pages/HelpPage.vue" ;
@@ -17,6 +18,7 @@ export default createRouter({
{ path: '/game/saper', component: SapergamePage, name: 'saper' }, { path: '/game/saper', component: SapergamePage, name: 'saper' },
{ path: '/game/crash', component: CrashGamePage, name: 'crash' }, { path: '/game/crash', component: CrashGamePage, name: 'crash' },
{ path: '/game/jackpot', component: JackpotPage, name: 'jackpot' }, { path: '/game/jackpot', component: JackpotPage, name: 'jackpot' },
{ path: '/game/jackpot/history', component: JackopthistoryPage, name: 'jackpot-history' },
{ path: '/settings', component: SettingsPage, name: 'settings' }, { path: '/settings', component: SettingsPage, name: 'settings' },
{ path: '/about', component: AboutPage, name: 'about' }, { path: '/about', component: AboutPage, name: 'about' },
{ path: '/help', component: HelpPage, name: 'help' }, { path: '/help', component: HelpPage, name: 'help' },