Blame view

src/router/index.js 339 Bytes
a426da5c   liuqimichale   init
1
2
  import Vue from 'vue'
  import Router from 'vue-router'
651530df   liuqimichale   高位视频
3
4
  import highVideo from '@/views/highVideo'
  
a426da5c   liuqimichale   init
5
6
7
8
9
10
11
  
  Vue.use(Router)
  
  export default new Router({
    routes: [
      {
        path: '/',
651530df   liuqimichale   高位视频
12
13
14
15
16
17
18
19
20
21
        redirect: {
          name: 'highVideo'
        }
      },
  
  
      {
        path: '/highVideo',
        name: 'highVideo',
        component: highVideo
a426da5c   liuqimichale   init
22
      }
651530df   liuqimichale   高位视频
23
24
25
  
  
  
a426da5c   liuqimichale   init
26
27
    ]
  })