Maison > Questions et réponses > le corps du texte
这里的firstname已经变化了但是为什么fullname没有变化呢
我哪步出错了吗
ringa_lee2017-04-10 17:37:08
应该是这样吧
var vm = new Vue(……);
vm.$watch('firstName', function(newVal, oldVal) {
console.log(newVal);
});
天蓬老师2017-04-10 17:37:08
vm不知道指的哪个实例
var vm=new Vue({});
vm.$watch
或者
new Vue({
data:function(){
return {
firstName:''
}
},
watch:{
'firstName':function(val){
}
}
})