index.js
339 Bytes
import Vue from 'vue'
import Router from 'vue-router'
import highVideo from '@/views/highVideo'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
redirect: {
name: 'highVideo'
}
},
{
path: '/highVideo',
name: 'highVideo',
component: highVideo
}
]
})