最近在Vue2项目里用计算属性真的香,特别是数据依赖复杂的时候,比methods好用多了...
computed: {
filteredList() {
return this.list.filter(item => item.active)
}
}
登录/注册