build(projects): 依赖升级

This commit is contained in:
Soybean
2021-08-17 14:59:59 +08:00
parent 025a9beae1
commit 09a28d8e1d
11 changed files with 203 additions and 79 deletions

22
src/router/routes.ts Normal file
View File

@ -0,0 +1,22 @@
import type { RouteRecordRaw } from 'vue-router';
/**
* 自定义路由
*/
export const customRoutes: Array<RouteRecordRaw> = [
{
name: 'root',
path: '/',
redirect: 'home'
},
{
name: 'home',
path: '/home',
component: () => import('@/views/home/index.vue')
},
{
name: 'system',
path: '/system',
component: () => import('@/views/system/index.vue')
}
];