最近在做毕业设计,使用vue做前端时遇到一个问题,在这里记一下。
如图需要在点击上一篇、下一篇时在当前组件页面切换文章
解决方法:
// 监听,当路由发生变化的时候执行
watch: {
$route(to, from) {
console.log(to.path);
this.query(to.path.slice(8)); //请求数据
}
},
最近在做毕业设计,使用vue做前端时遇到一个问题,在这里记一下。
如图需要在点击上一篇、下一篇时在当前组件页面切换文章
// 监听,当路由发生变化的时候执行
watch: {
$route(to, from) {
console.log(to.path);
this.query(to.path.slice(8)); //请求数据
}
},
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。