wip
This commit is contained in:
parent
4a0be19607
commit
7d3f46c529
13 changed files with 137 additions and 828 deletions
|
|
@ -57,7 +57,7 @@ const List = {
|
|||
return new Set(this.finalItems.map(this.getKey))
|
||||
},
|
||||
filteredSelected() {
|
||||
return [ ...this.allKeys.values().filter((key) => this.selected.has(key))]
|
||||
return [...this.allKeys.values().filter((key) => this.selected.has(key))]
|
||||
},
|
||||
allSelected() {
|
||||
return this.selected.size === this.finalItems.length
|
||||
|
|
@ -70,7 +70,7 @@ const List = {
|
|||
},
|
||||
finalItems() {
|
||||
return this.externalItems || this.items
|
||||
}
|
||||
},
|
||||
},
|
||||
created() {
|
||||
window.addEventListener('scroll', this.scrollLoad)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue