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