标签:ret length type sch check 点击 function style inpu
对于计算属性里关联的对象,即使对象不是组件作用域内的,当对象在外部改变了某个属性,同样会发出计算属性的方法。
computed:{ noCheckeLength:function(){ return this.list.filter(function(item){ return !item.isChecked }).length } },
item.isChecked是input{type=“checkbox”}的value值,当在页面点击勾选或者去掉勾选,则item.isChecked会改变,即在外部改变了属性,同样会发出计算属性的方法。
标签:ret length type sch check 点击 function style inpu
原文地址:http://www.cnblogs.com/yeyeyemax/p/6837029.html