Issue #107: Done.

This commit is contained in:
chiayin
2023-10-03 16:01:21 +08:00
parent 285fb43aa3
commit 112c4d1cdf
3 changed files with 4 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ export default {
},
data() {
return {
listSequence: this.listSeq,
listSequence: [],
filteredData: this.filterTaskData,
lastItemIndex: null,
}

View File

@@ -55,7 +55,7 @@ export default {
},
data() {
return {
select: this.tableSelect,
select: null,
metaKey: true
}
},

View File

@@ -48,7 +48,7 @@ export default {
props: ['tableTitle', 'tableData', 'tableSelect', 'progressWidth'],
data() {
return {
select: this.tableSelect,
select: null,
data: this.tableData
}
},
@@ -75,6 +75,6 @@ export default {
this.select = null;
this.$emit('on-row-select', this.select)
}
}
},
}
</script>