vue 監聽路由變化,dom加載完成後執行代碼

watch 監聽路由變化,且dom渲染完成後執行函數

watch:{
    // "$route": "monitorAPP"
    $route: {
      handler:function(val, oldVal){
        this.$nextTick(function(){  //頁面加載完成後執行
          this.monitorAPP()
        })
      },
      // 深度觀察監聽
      deep: true
    }
  }
相關文章
相關標籤/搜索