| | |
| | | import Vue from 'vue' |
| | | import VueRouter from 'vue-router' |
| | | import HomeView from '../views/HomeView.vue' |
| | | |
| | | Vue.use(VueRouter) |
| | | |
| | | import Home from "../views/home/index.vue"; |
| | | import AudioAnalysis from "../views/home/components/audioAnalysis/index.vue"; |
| | | import TextManager from "../views/home/components/textManager/index.vue"; |
| | | Vue.use(VueRouter); |
| | | const routes = [ |
| | | { |
| | | path: '/', |
| | | name: 'home', |
| | | component: HomeView |
| | | }, |
| | | { |
| | | path: '/about', |
| | | name: 'about', |
| | | // route level code-splitting |
| | | // this generates a separate chunk (about.[hash].js) for this route |
| | | // which is lazy-loaded when the route is visited. |
| | | component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue') |
| | | } |
| | | ] |
| | | |
| | | { |
| | | path:"/", |
| | | redirect:"/home/audioAnalysis" |
| | | }, |
| | | { |
| | | path:"/home", |
| | | component:Home, |
| | | children:[ |
| | | { |
| | | path:"audioAnalysis", |
| | | component:AudioAnalysis |
| | | }, |
| | | { |
| | | path:"textManager", |
| | | component:TextManager |
| | | } |
| | | ] |
| | | } |
| | | ]; |
| | | const router = new VueRouter({ |
| | | mode: 'history', |
| | | base: process.env.BASE_URL, |
| | | mode: 'hash', |
| | | routes |
| | | }) |
| | | |
| | | }); |
| | | export default router |