1234567891011121314151617181920 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/shop',
- component: Layout,
- redirct: 'noredirect',
- src: process.env.MIRCO_MALL_HOST,
- name: 'shop',
- other:true,
- children: [{
- path: process.env.MIRCO_MALL_HOST,
- name: 'shop',
- meta: {
- title: 'shop',
- other:true,
- noCache: true
- }
- }]
- }
|