代码如下
没有最后一行的时候正常,只是想进来的时候,默认在goods页面,但是页面一直在跳转,不知道是什么问题。看vuerouter的文档没有发现,想默认选中一个该用什么api
学习是最好的投资!
{ path: '/', component: Goods},
Redirect
http://router.vuejs.org/zh-cn...
Add a current default page object in routes:
const routes = [{ path: '/', component: Goods },{ path: '/goods', component: Goods },{ path: '/seller', component: Seller },{ path: '/ratings', component: Ratings }];
The design pattern of router in vue-router refers to the browser’s window.history related API
Same as history.go, the parameter accepted by router.go should be Number, for example:
// 上一页 history.go(-1) router.go(-1)
And what you should use is router.push
{ path: '/', component: Goods},
Redirect
http://router.vuejs.org/zh-cn...
Add a current default page object in routes:
The design pattern of router in vue-router refers to the browser’s window.history related API
Same as history.go, the parameter accepted by router.go should be Number, for example:
And what you should use is router.push