var vm=new Vue({
el:"#app",
data:{
arrays:[1,2,3,4]
},
methods:{
loadpage:function(){
var self=this;
self.arrays[0]=5;
console.log("变化之后的数组----");
console.log(self.arrays);
}
},
watch:{//侦听属性
arrays:{
handler:function(val,oldVal){
var self=this;
console.log(val);
console.log(oldVal);
},
deep:true
}
},
created:function(){
var self=this;
self.loadpage();
}
});
李行知
相关分类