policeSecurity/policeManagement/src/router/staticRouters.ts

86 lines
2.0 KiB
TypeScript
Raw Normal View History

2024-08-30 18:07:30 +08:00
import { RouteRecordRaw } from "vue-router";
export const Layout = () => import("@/components/layout/layout.vue");
export const staticRouter: RouteRecordRaw[] =
[
{
path: "/",
name: "/",
component: Layout,
redirect: "/dashboard",
children: []
2024-08-29 17:06:00 +08:00
},
2024-08-30 18:07:30 +08:00
{
path: '',
name: 'dashboard',
redirect: '/index',
2024-08-30 18:07:30 +08:00
meta: {
title: '首页',
keepalive: true
},
component: Layout,
children: [
{
path: '/index',
name: 'index',
2024-08-30 18:07:30 +08:00
meta: {
title: '首页',
keepalive: true
},
component: () => import('@/views/dashboard/index.vue')
},
]
},
{
path: '',
2024-08-30 18:07:30 +08:00
name: 'register',
meta: {
title: '注册',
keepalive: true
},
component: Layout,
children: [
{
path: '/register', // 这里使用相对路径而不是 '/register'
name: '',
2024-08-30 18:07:30 +08:00
meta: {
title: '注册',
keepalive: true
},
component: () => import('@/views/register.vue')
2024-08-29 17:06:00 +08:00
},
2024-08-30 18:07:30 +08:00
]
},
{
//登录页面
path: '/login',
name: 'login',
meta: {
// title: '登录',
// keepalive: true
},
component: () => import('@/views/login.vue')
},
{
//登录页面
path: '/register-index',
name: 'register-index',
meta: {
// title: '注册',
2024-08-30 18:07:30 +08:00
},
component: () => import('@/views/register.vue')
},
]