Groundwork

This commit is contained in:
2022-05-08 15:35:43 +03:00
parent 44f6c82a4e
commit 17aa8c75b1
52 changed files with 13631 additions and 29700 deletions

View File

@@ -0,0 +1,23 @@
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;