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