Files
worktime/frontend/src/router/index.js
2022-05-08 15:35:43 +03:00

24 lines
435 B
JavaScript

import { createRouter, createWebHistory } from 'vue-router';
import Home from '../views/Home/Index.vue';
import AuthRedirect from '../views/AuthRedirect.vue';
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/auth-redirect',
name: 'AuthRedirect',
component: AuthRedirect,
},
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;