index.js
903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import Vue from 'vue'
import Router from 'vue-router'
import home from '@/views/home/index'
Vue.use(Router)
export default new Router({
linkActiveClass: 'nav-active',
routes: [
{
path: '/',
redirect: {
name: 'home'
}
},
{
path: '/home',
name: 'home',
component: home
},
{
path: '/about',
name: 'about',
component: () => import('@/views/about/index')
},
{
path: '/contact',
name: 'contact',
component: () => import('@/views/contact/index')
},
{
path: '/product',
name: 'product',
component: () => import('@/views/product')
},
{
path: '/news',
name: 'news',
component: () => import('@/views/news')
},
{
path: '/newsDetail/:newsId',
name: 'newsDetail',
component: () => import('@/views/newsDetail')
}
]
})