| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { RouteRecordRaw } from 'vue-router';
- import { Layout } from '@/router/constant';
- import { CubeOutline } from '@vicons/ionicons5';
- import { renderIcon } from '@/utils/index';
- const routes: Array<RouteRecordRaw> = [
- // {
- // path: '/comtemp',
- // name: 'Comtemp',
- // component: Layout,
- // redirect: '/comtemp/search-article',
- // meta: {
- // title: '常用模板',
- // icon: renderIcon(CubeOutline),
- // sort: 9,
- // },
- // children: [
- // {
- // path: 'search-article',
- // name: 'SearchArticle',
- // meta: {
- // title: '搜索列表(文章)',
- // },
- // component: () => import('@/views/comtemp/search-article/search-article.vue'),
- // },
- // {
- // path: 'search-video',
- // name: 'SearchVideo',
- // meta: {
- // title: '搜索列表(视频)',
- // },
- // component: () => import('@/views/comtemp/search-video/search-video.vue'),
- // },
- // {
- // path: 'search-make',
- // name: 'SearchMake',
- // meta: {
- // title: '搜索列表(预约)',
- // },
- // component: () => import('@/views/comtemp/search-make/search-make.vue'),
- // },
- // ],
- // },
- ];
- export default routes;
|