1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /** 引入模板 **/
- import Layout from '@/layout'
- import creatWebsite from '@/layout/creatWebsite'
- const dangyunlongRouter= [
- {
- path: '/templateCreat',
- component: creatWebsite,
- children: [
- {
- name: '',
- path: '',
- component: () => import('@/views/template/templateCreat'),
- meta: {
- title: '构建网站模板',
- hidden: true,
- breadcrumb: true
- }
- }
- ]
- },
- {
- path: '/templateBase',
- component: Layout,
- children: [
- {
- name: '',
- path: '',
- component: () => import('@/views/template/templateBase'),
- meta: {
- title: '填写模板基本信息',
- hidden: true,
- breadcrumb: true
- }
- }
- ]
- },
- {
- path: '/templateStyle',
- component: Layout,
- children: [
- {
- name: '',
- path: '',
- component: () => import('@/views/template/templateStyle'),
- meta: {
- title: '选择模板风格',
- hidden: true,
- breadcrumb: true
- }
- }
- ]
- },
- {
- path: '/templateList',
- component: Layout,
- children: [
- {
- name: '',
- path: '',
- component: () => import('@/views/template/templateList'),
- meta: {
- title: '网站模板',
- hidden: true,
- breadcrumb: true
- }
- }
- ]
- },
- ]
- export default dangyunlongRouter
|