mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-08 23:42:27 +08:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { RouteRecordRaw } from 'vue-router';
|
|
import { Layout } from '@/router/constant';
|
|
import { SettingOutlined } from '@vicons/antd';
|
|
import { renderIcon } from '@/utils/index';
|
|
|
|
/**
|
|
* @param name 路由名称, 必须设置,且不能重名
|
|
* @param meta 路由元信息(路由附带扩展信息)
|
|
* @param redirect 重定向地址, 访问这个路由时,自定进行重定向
|
|
* @param meta.disabled 禁用整个菜单
|
|
* @param meta.title 菜单名称
|
|
* @param meta.icon 菜单图标
|
|
* @param meta.keepAlive 缓存该路由
|
|
* @param meta.sort 排序越小越排前
|
|
*
|
|
* */
|
|
const routes: Array<RouteRecordRaw> = [
|
|
{
|
|
path: '/setting',
|
|
name: 'Setting',
|
|
redirect: '/setting/account',
|
|
component: Layout,
|
|
meta: {
|
|
title: '设置页面',
|
|
icon: renderIcon(SettingOutlined),
|
|
sort: 5,
|
|
},
|
|
children: [
|
|
{
|
|
path: 'account',
|
|
name: 'setting-account',
|
|
meta: {
|
|
title: '个人设置',
|
|
},
|
|
component: () => import('@/views/setting/account/account.vue'),
|
|
},
|
|
{
|
|
path: 'system',
|
|
name: 'setting-system',
|
|
meta: {
|
|
title: '系统设置',
|
|
},
|
|
component: () => import('@/views/setting/system/system.vue'),
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export default routes;
|