| 123456789101112131415161718192021222324252627282930313233 |
- import { RouteRecordRaw } from 'vue-router';
- import { Layout } from '@/router/constant';
- import { ProjectOutlined } from '@vicons/antd';
- import { renderIcon } from '@/utils/index';
- const routes: Array<RouteRecordRaw> = [
- {
- path: '/about',
- name: 'about',
- component: Layout,
- meta: {
- sort: 11,
- isRoot: true,
- activeMenu: 'about_index',
- alwaysShow: true,
- icon: renderIcon(ProjectOutlined),
- },
- children: [
- {
- path: 'index',
- name: `about_index`,
- meta: {
- title: '关于项目',
- activeMenu: 'about_index',
- },
- component: () => import('@/views/about/index.vue'),
- },
- ],
- },
- ];
- export default routes;
|