vue的$watch方法

  mounted() {    // 在生命周期函数执行
    this.$watch(_=>{
     // 满足条件,触发下面的方法
     return this.pitchOnUserInfo.FFloor && this.form.orderType
    },_=>{
      this.getGasProductByType()
    })
  },

你可能感兴趣的:(vue.js,elementui,javascript)