cv_2026/src/router/index.ts
jl 59e7abfda4
Some checks are pending
CV build / buid (push) Waiting to run
init vue and build
2026-04-17 10:34:52 +02:00

9 lines
186 B
TypeScript

import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [],
})
export default router