123456789101112131415161718 |
- export default {
- targets: {
- ie: 11,
- },
- links: [ { rel: 'icon', href: 'http://questnet.cn/image/logo2.png', }, ],
- title:'趣程官网',
- metas: [
- {name: 'referrer', content: 'no-referrer'}
- ],
- routes: [
- { path: '/', component: '@/pages/Home/index' },
- { path: '/about', component: '@/pages/About/index' },
- { path: '/introduce', component: '@/pages/Introduce/index' },
- { path: '/staffStyle', component: '@/pages/staffStyle/index' },
- { path: '/contact', component: '@/pages/ContactUs/index' }
- ]
- }
|