This commit is contained in:
zk
2023-12-18 18:34:19 +08:00
parent 2cc8886c2d
commit 580a4fc5c6
50 changed files with 2343 additions and 223 deletions
+13
View File
@@ -3,6 +3,19 @@ import { createRouter, createWebHistory, Router, RouteRecordRaw } from 'vue-rout
const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'default',
component: () => import('/@/views/sys/login.vue'),
},
{
path: '/login',
name: 'login',
meta: {
title: '登录',
},
component: () => import('/@/views/sys/login.vue'),
},
{
path: '/home',
name: 'index',
meta: {
title: '首页',