美文网首页
vue路由参数变化刷新数据

vue路由参数变化刷新数据

作者: 小拇指的约定021 | 来源:发表于2019-11-29 13:05 被阅读0次

实测有效:
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