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