data () {
return {
phone: [
{
name: '工作',
telNum: ''
}
]
}
},
watch: {
phone: {
handle: function (newVal) {
console.log(newVal)
},
deep: true
}
}
报错信息
代码如上,请问问题出在哪里?
不是
handle
是handler