export default new Router({mode: 'history',base: process.env.BASE_URL,routes: [{path: '/',name: 'home',component: Home},],//配置这个scrollBehavior(to,from,savedPosition){console.log(to)if(to.path == "/detail"){return {x:0,y:0} //让页面处于顶部}else{return savedPosition //让页面处于记录点的位置}}})
