first commit
All checks were successful
Deploy Application / deploy (push) Successful in 13s

This commit is contained in:
2025-06-12 00:26:45 +04:00
parent e2af4c4d8c
commit 17ca86c09c
10 changed files with 286 additions and 37 deletions

View File

@ -0,0 +1,17 @@
import type { Component } from 'vue'
interface Route {
path: string
name: string
component: () => Promise<Component>
}
const routes: Route[] = [
{
path: '/',
name: '/',
component: () => import('@/pages/mainPage/indexPage.vue'),
},
]
export default routes