vue-监听(watch)

1.监听某个字段

watch: {
    svalue(val, oldVal) {
      if (val !== oldVal) {
        this.$emit("input", this.svalue)
      }
    }
  }

2.监听对象

  watch: {
    form: {
      deep: true,
      handler(newval) {
        this.data = newval
      }
    }
  }

3.监听对象的某个属性

  watch: {
    ‘form.sfyx0‘: {
      deep: true,
      handler(newval) {
        this.btn= true
      }
    }
  }

 

vue-监听(watch)

上一篇:【kafka实战】分区重分配可能出现的问题和排查问题思路(生产环境实战,干货!!!非常干!!!建议收藏)


下一篇:django-strftime日期格式化问题