1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const mobile = () => import('../components/mobile/index.vue')
- const mobileHome = () => import('../views/mobile/index.vue')
- const scene = () => import('../views/mobile/scene/index.vue')
- const order = () => import('../views/mobile/order/index.vue')
- const device = () => import('../views/mobile/device/index.vue')
- const appProduct = () => import('../views/mobile/appProduct/index.vue')
- const information = () => import('../views/mobile/information/index.vue')
- const routesP = [{
- path: '/',
- name: 'Mobile',
- redirect: '/information',
- component: mobile,
- children: [{
- path: '/',
- name: 'information',
- component: information
- },{
- 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
|