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
|