如何使用Vue.js观察数组长度?
答案 0 :(得分:18)
使用vm创建中的watch部分:
var vm = new Vue({
el: 'body',
data: {
items: []
},
computed: {
item_length: function () {
return this.battle_logs.length;
}
},
watch: {
items: {
handler: function () {
console.log('caught!');
},
deep: true
}
}
});
或观看计算出的长度属性:
vm.$watch('item_length', function(newVal, oldVal) {
console.log('caught!');
});