Files
hearts/src/router/config/routes.ts
2025-08-02 22:34:43 +04:00

16 lines
318 B
TypeScript

import type { TRoute } from './_type/TRoutes.ts'
const routes: TRoute[] = [
{
path: '/',
name: '/',
component: () => import('../../pages/index/rootPage.vue'),
},
{
path:'/game',
name:'/game',
component:()=> import('../../pages/clicker-game/clickerIndex.vue')
}
]
export default routes