实测有效:
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();
},