vue学习之----子路由返回传参

1、情境

由index页面跳转到detail页面

从detail页面返回时需要给index页面传一个参数tabIndex

2、实现

detail页面:

beforeRouteLeave(to, from, next) {
  if (to.name == 'Detail') {
    to.query.tabIndex = "2";
  }
  next();
}

index页面:

mounted() {
  if (this.$route.query.tabIndex) {
    this.tabIndex = this.$route.query.tabIndex;
  }
},

 

上一篇:uni-app(四)


下一篇:Vue父组件中调子组件样式没有反应的解决方法