form表单内部变化watch监听

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

//具体到表单内某个值

  watch: {
    'form.sfyj': {
      deep: true,
      handler(newval) {
        this.tzinfo = false
      }
    }
  },

原文地址:https://www.cnblogs.com/wwj007/p/13597092.html