import Vue from 'vue' import Router from 'vue-router' import App from './app' import Example from './example' import Ebiz from './ebiz' Vue.use(Router) const constantRouterMap = [...App, ...Example, ...Ebiz] //后续可以删减模块 export default new Router({ // mode: "history", //路由模式 routes: constantRouterMap, scrollBehavior: () => ({ y: 0 }) })