1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const pc = () => import('../components/pc/index.vue')
- const pcHome = () => import('../views/pc/index.vue')
- const information = () => import('../views/pc/information/index.vue')
- const scene = () => import('../views/pc/scene/index.vue')
- const order = () => import('../views/pc/order/index.vue')
- const device = () => import('../views/pc/device/index.vue')
- const appProduct = () => import('../views/pc/appProduct/index.vue')
- const routesP = [{
- path: '/',
- name: 'Pc',
- redirect: '/',
- component: pc,
- children: [{
- path: '/',
- name: 'index',
- component: pcHome
- }, {
- name: 'information',
- path: '/information',
- component: information,
- meta: { hideFooterFind: false, requireAuth: true }
- },
- {
- name: 'scene',
- path: '/scene',
- component: scene,
- meta: { hideFooterFind: false, requireAuth: true }
- },
- {
- name: 'order',
- path: '/order',
- component: order,
- meta: { hideFooterFind: false, requireAuth: true }
- },
- {
- name: 'device',
- path: '/device',
- component: device,
- meta: { hideFooterFind: false, requireAuth: true }
- },
- {
- name: 'appProduct',
- path: '/appProduct',
- component: appProduct,
- meta: { hideFooterFind: false, requireAuth: true }
- }]
- }]
- export default routesP
|