代码如下
没有最后一行的时候正常,只是想进来的时候,默认在goods页面,但是页面一直在跳转,不知道是什么问题。看vuerouter的文档没有发现,想默认选中一个该用什么api
学习是最好的投资!
{ path: '/', component: Goods},
重定向
http://router.vuejs.org/zh-cn...
routes中增加一个当前默认页对象:
const routes = [{ path: '/', component: Goods },{ path: '/goods', component: Goods },{ path: '/seller', component: Seller },{ path: '/ratings', component: Ratings }];
vue-router 中的 router的设计模式是参考了浏览器的window.history相关API
同history.go, router.go接受的参数应该为Number, 例如:
// 上一页 history.go(-1) router.go(-1)
而你应该使用的是 router.push
{ path: '/', component: Goods},
重定向
http://router.vuejs.org/zh-cn...
routes中增加一个当前默认页对象:
vue-router 中的 router的设计模式是参考了浏览器的window.history相关API
同history.go, router.go接受的参数应该为Number, 例如:
而你应该使用的是 router.push