import Vue from 'vue' import VueRouter from 'vue-router' 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:"/", redirect:"/home/audioAnalysis" }, { path:"/home", component:Home, children:[ { path:"audioAnalysis", component:AudioAnalysis }, { path:"textManager", component:TextManager } ] } ]; const router = new VueRouter({ mode: 'hash', routes }); export default router