VueRouter 中' this.$router.push '跳转页面不刷新的问题解决
Posted 断笔书生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VueRouter 中' this.$router.push '跳转页面不刷新的问题解决相关的知识,希望对你有一定的参考价值。
在跳转后页面添加:
mounted(){this.getList();//重新加载数据
}
或者
activated(){
this.getList();//重新加载数据
}
以上是关于VueRouter 中' this.$router.push '跳转页面不刷新的问题解决的主要内容,如果未能解决你的问题,请参考以下文章