create helpcomponent

This commit is contained in:
Madara0330E
2024-02-21 21:19:08 +03:00
parent e390e8dcf7
commit fc1d7f552d
7 changed files with 57 additions and 5 deletions

View File

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