UnisKB/ui/src/router/index.ts

10 lines
231 B
TypeScript
Raw Normal View History

2025-04-14 12:11:23 +00:00
import { createRouter, createWebHistory } from 'vue-router'
2025-04-16 11:10:00 +00:00
import { routes } from '@/router/routes'
2025-04-14 12:11:23 +00:00
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
2025-04-16 11:10:00 +00:00
routes: routes,
2025-04-14 12:11:23 +00:00
})
export default router