/** * Note: 路由配置项 * * path: '/path' // 路由路径 * name:'router-name' // 设定路由的名字,一定要填写不然使用时会出现各种问题 * meta : { title: 'title' // 设置该路由在侧边栏的名字 icon: 'icon-name' // 设置该路由的图标 activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。 query: '{"id": 1}' // 访问路由的默认传递参数 hidden: true // 当设置 true 的时候该路由不会在侧边栏出现 hideTab: true //当设置 true 的时候该路由不会在多标签tab栏出现 } */ import type { RouteRecordRaw } from "vue-router"; import { PageEnum } from "@/enums/pageEnum"; import Layout from "@/layout/default/index.vue"; export const LAYOUT = () => Promise.resolve(Layout); export const INDEX_ROUTE_NAME = Symbol(); export const constantRoutes: Array = [ { path: "/:pathMatch(.*)*", component: () => import("@/views/error/404.vue"), }, { path: PageEnum.ERROR_403, component: () => import("@/views/error/403.vue"), }, { path: PageEnum.LOGIN, component: () => import("@/views/account/login.vue"), }, { path: "/user", component: LAYOUT, children: [ { path: "setting", component: () => import("@/views/user/setting.vue"), name: Symbol(), meta: { title: "个人设置", }, } ], }, // { // path: '/dev_tools', // component: LAYOUT, // children: [ // { // path: 'code/edit', // component: () => import('@/views/dev_tools/code/edit.vue'), // meta: { // title: '编辑数据表', // activeMenu: '/dev_tools/code' // } // } // ] // }, // { // path: '/setting', // component: LAYOUT, // children: [ // { // path: 'dict/data', // component: () => import('@/views/setting/dict/data/index.vue'), // meta: { // title: '数据管理', // activeMenu: '/setting/dict' // } // } // ] // } ]; export const INDEX_ROUTE: RouteRecordRaw = { path: PageEnum.INDEX, component: LAYOUT, name: INDEX_ROUTE_NAME, };