当前位置:主页 > 网页前端 > vue >
时间:2021-11-27 13:46:11 | 栏目:vue | 点击:次
如下所示:
watch: { aaa: { handler: function (newVal,oldVal) { console.log('当前的值:'+ newVal); console.log('旧的值' + oldVal); }, deep: true //深度监听 } }