const routes = [
{ path: '/', component: ScooterList },
{ path: '/step-2', component: ExtrasList, beforeEnter: PaymentMiddleware.scooterMustSelected },
{ path: '/step-3', component: Payment, beforeEnter: PaymentMiddleware.scooterMustSelected },
]
const router = new VueRouter({
routes // forma corta para routes: routes
})
点击按钮
store.commit('setSelectedScooter', scooter)
this.$router.push('/step-2')
路由器推送适用于所有资源管理器,但不适用于Firefox。路由器添加了“步骤2”'网址很好,但组件没有改变,任何想法?
修改