support indeterminate checkbox state

This commit is contained in:
taehoon 2019-04-06 13:45:28 -04:00
parent 3f5e798de7
commit ecff6acf2d
3 changed files with 15 additions and 3 deletions

View file

@ -24,6 +24,12 @@ const SelectableList = {
computed: {
allSelected () {
return !this.items.find(item => !this.isSelected(item))
},
noneSelected () {
return !this.items.find(item => this.isSelected(item))
},
someSelected () {
return !this.allSelected && !this.noneSelected
}
},
methods: {