2025-03-18 14:03:46 +03:00

16 lines
319 B
TypeScript

import { createRouter, createWebHistory } from 'vue-router'
import WizardPage from "@/pages/WizardPage.vue";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'wizard',
component: WizardPage,
},
],
})
export default router