vue 路由深度监听

1.场景:路由变化时监听后操作具体业务
2.

watch:{
    $route: {
      handler: function(val, oldVal){
        // if(this.$store.state.watchNav=="Comment" || this.$store.state.watchNav=="Supplier"){
        //   this.$store.state.activeNum="1-1"
        // }
        // this.$store.state.watchNav=val.name;
        console.log(val);
      },
      // 深度观察监听
      deep: true
    }
  }

你可能感兴趣的:(路由)