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() { data() {
return { return {
listSequence: this.listSeq, listSequence: [],
filteredData: this.filterTaskData, filteredData: this.filterTaskData,
lastItemIndex: null, lastItemIndex: null,
} }

View File

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

View File

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