Revert "Merge pull request #20 from danilt2000/Swino4ka"

This reverts commit 3b06b7ef2d, reversing
changes made to c4761cec13.
This commit is contained in:
rafael1209
2024-04-08 21:05:08 +03:00
parent 25c8bab94f
commit 49819e061a
6 changed files with 99 additions and 274 deletions

View File

@@ -3,6 +3,7 @@ import { createRouter, createWebHistory } from "vue-router";
import HomePage from "../pages/HomePage.vue";
import ProfilePage from "@/pages/ProfilePage.vue";
import SapergamePage from "@/pages/games-pages/SapergamePage.vue";
import DoublePage from "@/pages/games-pages/DoublePage.vue";
import SettingsPage from "@/pages/SettingsPage.vue";
import CrashGamePage from "@/pages/games-pages/CrashgamePage.vue";
import JackpotPage from "@/pages/games-pages/JackpotPage.vue";
@@ -16,6 +17,7 @@ export default createRouter({
{ path: '/', component: HomePage, name: 'home' },
{ path: '/profile', component: ProfilePage, name: 'profile' },
{ path: '/game/saper', component: SapergamePage, name: 'saper' },
{ path: '/game/double', component: DoublePage, name: 'double' },
{ path: '/game/crash', component: CrashGamePage, name: 'crash' },
{ path: '/game/jackpot', component: JackpotPage, name: 'jackpot' },
{ path: '/game/jackpot/history', component: JackopthistoryPage, name: 'jackpot-history' },