Initial commit

This commit is contained in:
CharlieDigital
2022-01-15 11:00:39 -05:00
commit 830c3398f0
19 changed files with 1388 additions and 0 deletions

16
web/src/router/routes.ts Normal file
View File

@@ -0,0 +1,16 @@
import { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] =
[{
path: '/',
component: () => import('../layouts/MainLayout.vue'),
children: [
{
name: 'Home',
path: '',
component: () => import('../views/SampleView.vue')
}
]
}];
export default routes;