路由
项目路由配置存放于 src/router 下面。 src/router/modules用于存放路由模块,在该目录下的文件会自动注册。
配置
模块说明
在 src/router/modules 内的 .ts
文件会被视为一个路由模块。
一个路由模块包含以下结构
ts
import { RouteRecordRaw } from 'vue-router';
import { Layout } from '@/router/constant';
import { DashboardOutlined } from '@vicons/antd';
import { renderIcon } from '@/utils/index';
const routeName = 'dashboard';
const routes: Array<RouteRecordRaw> = [
{
path: '/dashboard',
name: routeName,
redirect: '/dashboard/console',
component: Layout,
meta: {
title: 'Dashboard',
icon: renderIcon(DashboardOutlined),
permissions: ['dashboard_console', 'dashboard_console', 'dashboard_workplace'],
sort: 0,
},
children: [
{
path: 'console',
name: `${routeName}_console`,
meta: {
title: '主控台',
permissions: ['dashboard_console'],
},
component: () => import('@/views/dashboard/console/console.vue'),
},
{
path: 'workplace',
name: `${routeName}_workplace`,
meta: {
title: '工作台',
keepAlive: true,
permissions: ['dashboard_workplace'],
},
component: () => import('@/views/dashboard/workplace/workplace.vue'),
},
],
},
];
export default routes;
多级路由
注意事项
- 整个项目所有路由
name
不能重复 - 除了 layout 对应的 path 前面需要加
/
,其余子路由都不要以/
开头 - 多级路由,当没有配置时,
redirect
,redirect
默认为第一个子路由,配置则优先按配置
示例
ts
import { RouteRecordRaw } from 'vue-router';
import { Layout, ParentLayout } from '@/router/constant';
import { WalletOutlined } from '@vicons/antd';
import { renderIcon } from '@/utils/index';
const routeName = 'comp';
const routes: Array<RouteRecordRaw> = [
{
path: '/comp',
name: routeName,
component: Layout,
redirect: '/comp/table',
meta: {
title: '组件示例',
icon: renderIcon(WalletOutlined),
sort: 8,
},
children: [
{
path: 'table',
name: `${routeName}_table`,
redirect: '/comp/table/basic',
component: ParentLayout,
meta: {
title: '表格',
},
children: [
{
path: 'basic',
name: `${routeName}_table_basic`,
meta: {
title: '基础表格',
},
component: () => import('@/views/comp/table/basic.vue'),
},
{
path: 'editCell',
name: `${routeName}_table_editCell`,
meta: {
title: '单元格编辑',
},
component: () => import('@/views/comp/table/editCell.vue'),
},
{
path: 'editRow',
name: `${routeName}_table_editRow`,
meta: {
title: '整行编辑',
},
component: () => import('@/views/comp/table/editRow.vue'),
},
],
},
{
path: 'upload',
name: `${routeName}_upload`,
meta: {
title: '上传',
},
component: () => import('@/views/comp/upload/index.vue'),
},
],
},
];
export default routes;
Meta 配置说明
ts
export interface RouteMeta {
//菜单名称 一般必填
title: string;
//禁用菜单
disabled:boolean;
//菜单图标
icon: VNode;
//缓存该路由
keepAlive: boolean;
//隐藏菜单
hidden: boolean;
//排序越小越排前
sort: number;
//取消自动计算根路由模式
alwaysShow: boolean
// 当路由设置了该属性,则会高亮相对应的侧边栏。
// 这在某些场景非常有用,比如:一个列表页路由为:/list/basic-list
// 点击进入详情页,这时候路由为/list/basic-info/1,但你想在侧边栏高亮列表的路由,就可以进行如下设置
// 注意是配置高亮路由 `name`,不是path
activeMenu: string;
//是否跟路由 顶部混合菜单,必须传 true,否则左侧会显示异常(场景就是,分割菜单之后,当一级菜单没有子菜单)
isRoot: boolean;
//内联外部地址
frameSrc: string;
//菜单包含权限集合,满足其中一个就会显示
permissions: string[];
//是否固定 设置为 true 之后 多页签不可删除
affix: boolean
}
图标
为了简化使用,只需用renderIcon(WalletOutlined)方法,传入 xicons 中图标即可
新增路由
如何新增一个路由模块
- 在 src/router/modules 内新增一个模块文件。
示例,新增 test.ts 文件
ts
import { RouteRecordRaw } from 'vue-router';
import { Layout } from '@/router/constant';
import { CheckCircleOutlined } from '@vicons/antd';
import { renderIcon } from '@/utils/index';
const routes: Array<RouteRecordRaw> = [
{
path: '/result',
name: 'Result',
redirect: '/result/success',
component: Layout,
meta: {
title: '结果页面',
icon: renderIcon(CheckCircleOutlined),
sort: 4,
},
children: [
{
path: 'success',
name: 'result-success',
meta: {
title: '成功页',
},
component: () => import('@/views/result/success.vue'),
},
],
},
];
export default routes;
此时路由已添加完成,不需要手动引入,放在src/router/modules 内的文件会自动被加载。
验证
访问 ip:端口/result/success 出现对应组件内容即代表成功
路由刷新
项目中采用的是重定向方式
实现
ts
import { useRoute } from 'vue-router';
const route = useRoute();
router.push({
path: '/redirect' + unref(route).fullPath,
});
Redirect
ts
import { defineComponent, onBeforeMount } from 'vue';
import { useRoute, useRouter } from 'vue-router';
import { NEmpty } from 'naive-ui';
export default defineComponent({
name: 'Redirect',
setup() {
const route = useRoute();
const router = useRouter();
onBeforeMount(() => {
const { params, query } = route;
const { path } = params;
router.replace({
path: '/' + (Array.isArray(path) ? path.join('/') : path),
query,
});
});
return () => <NEmpty />;
},
});
外联
在侧边栏中配置一个外链,只要你在 name 中填写了合法的 url 路径,当你点击侧边栏的时候就会帮你新开这个页面。
ts
{
path: '/external',
name: 'https://jekip.github.io/docs/',
meta: {
title: '文档地址',
icon: renderIcon(CheckCircleOutlined),
sort: 4,
}
}
注意事项
path
不能为链接,必须为/
开头字符串- 子路由都不要以
/
开头,跳转外部地址,只需把name
填写完整网址即可
内联
在侧边栏中配置一个内联外部地址,只要你在 meta.frameSrc 填写了合法的 url 路径,当你点击侧边栏的时候就会帮你内联显示这个页面。
ts
import { RouteRecordRaw } from 'vue-router';
import { Layout } from '@/router/constant';
import { DesktopOutline } from '@vicons/ionicons5';
import { renderIcon } from '@/utils/index';
const IFrame = () => import('@/views/iframe/index.vue');
const routes: Array<RouteRecordRaw> = [
{
path: '/frame',
name: 'Frame',
redirect: '/frame/docs',
component: Layout,
meta: {
title: '外部页面',
sort: 9,
icon: renderIcon(DesktopOutline),
},
children: [
{
path: 'docs',
name: 'frame-docs',
meta: {
title: '项目文档(内嵌)',
frameSrc: 'https://naive-ui-admin-docs.vercel.app',
},
component: IFrame,
},
{
path: 'naive',
name: 'frame-naive',
meta: {
title: 'NaiveUi(内嵌)',
frameSrc: 'https://www.naiveui.com',
},
component: IFrame,
},
],
},
];
export default routes;
根路由
系统已经帮你做了判断,当一个路由下面的 children 声明的路由大于>1 个时,自动会变成嵌套的模式。 如果子路由正好等于一个就会默认将子路由作为根路由显示在侧边栏中,若不想这样,可以通过设置在根路由meta中设置alwaysShow: true
来取消这一特性
ts
{
path: '/external',
name: 'external',
component: Layout,
meta: {
sort: 4, //排序依然还是在这里定义
},
children: [
{
path: 'console',
name: `console`,
meta: {
title: '主控台',
permission: ['dashboard_console'],
},
component: () => import('@/views/dashboard/console/console.vue'),
}
]
}
如何开启单个页面缓存
开启缓存有 3 个条件
- 在router中meta内将
keepAlive
设置为true
- 路由设置
name
,且不能重复 - 路由对应的组件加上
name
,与路由设置的name
保持一致
ts
{
...,
// name
name: 'Login',
// 对应组件组件的name
component: () => import('@/views/login/index.vue'),
...
},
// @/views/login/index.vue
export default defineComponent({
// 需要和路由的name一致
name:"Login"
});
注意
keep-alive 生效的前提是:需要将路由的 name
属性及对应的页面的 name
设置成一样。因为:
include - 字符串或正则表达式,只有名称匹配的组件会被缓存