// 路由管理 import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) export default new Router({ mode: 'history', base: process.env.BASE_URL, routes: [ { path: '/', redirect: '/home' }, { path: '/home', name: 'home', component: () => import('./components/Home.vue') }, { path: '/login', name: 'login', component: () => import('./components/Login.vue') }, { path: '/play', name: 'play_video', component: () => import('./components/MyPlayer.vue') } ] })