重置方法:Object.assign(this.$data.deviceForm, this.$options.data.call(this).deviceForm)
报错:"TypeError: this.$t is not a function"
错误原因:data数据中用到了this,调用this.$options.data()方法时this指向出现了不一致
解决方法:人为更改this指向,this.$options.data.call(this)
重置方法:Object.assign(this.$data.deviceForm, this.$options.data.call(this).deviceForm)
报错:"TypeError: this.$t is not a function"
错误原因:data数据中用到了this,调用this.$options.data()方法时this指向出现了不一致
解决方法:人为更改this指向,this.$options.data.call(this)