Logo white

BJ_web_developers / highOrder

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • highOrder
  • src
  • router
  • index.js
  • 高位视频
    651530df
    liuqimichale authored
    2021-08-04 15:10:24 +0800  
    Browse Code »
index.js 339 Bytes
Edit Raw Blame History Permalink
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
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
    }



  ]
})