单页面多路由区域操作
在一个页面中有两个及以上的
App.vue 中设置:
index.js中设置:
Vue.use(Router)
export default new Router ({
routes : [
{
path : '/',name : 'Hello',components : {
default : Hello,left : First1,right : First2
}
}
]
})
下面的设置是当url为/#/first 时,交换两个组件显示的位置