此类问题在vue1中可以通过添加Query参数解决,but,在2.0里面就gg了~
https://github.com/vuejs/vue-router/issues/296
问题详情补充:
如此这般:{name: 'item', path: '/item/:id', component: component}
路由如此这般,然后要从item/1跳转到item/2数据不会刷新的解决方法
解决方法:
添加路由监听,路由改变时执行监听方法
methods:{ fetchData(){ console.log('路由发送变化doing...'); } }, created() { var self = this; self.fetchData(); }, watch:{ '$route':'fetchData' },