实测有效:
beforeRouteEnter(to, from, next) {
next((vm) => {
vm.showChart(to.params.clickId, to.params.title);
});
},
beforeRouteUpdate(to, from, next) {
this.showChart(to.params.clickId, to.params.title);
next();
},
实测有效:
beforeRouteEnter(to, from, next) {
next((vm) => {
vm.showChart(to.params.clickId, to.params.title);
});
},
beforeRouteUpdate(to, from, next) {
this.showChart(to.params.clickId, to.params.title);
next();
},
本文标题:vue路由参数变化刷新数据
本文链接:https://www.haomeiwen.com/subject/gghuuctx.html
网友评论