Files
snippets-manager-front/src/router/index.ts
T
2024-10-09 04:16:35 +02:00

16 lines
292 B
TypeScript

import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView
}
]
})
export default router