其他分享
首页 > 其他分享> > Invalid value for option“watch“:expected anObject,but got Function.

Invalid value for option“watch“:expected anObject,but got Function.

作者:互联网

在运行时报  选项“watch”的值无效:应为对象,但得到函数 这样一个问题。

项目场景:

watch() {

    (val, oldVal) => {

      if (val) {

        this.active = val

      }

    }

  },


 

解决方案:

改为:

watch: {
    active: {
      handler(val, older) {
        if (val) {
          this.active = val
        }
      }
    }
  },

标签:Function,option,val,watch,but,oldVal,Invalid,active
来源: https://blog.csdn.net/m0_61002365/article/details/120548581