fixed: Fixed An issue where adding a tag to asset does not work

This commit is contained in:
zhaojisen
2024-10-09 17:17:12 +08:00
parent ddf5ac2151
commit cb46f393e0

View File

@@ -131,6 +131,16 @@ export default {
}
},
computed: {},
watch: {
cellValue: {
handler(newValue) {
if (newValue) {
this.initial = this.formatterArgs.getLabels(this.cellValue)
this.iLabels = [...this.initial]
}
}
}
},
mounted() {
this.initial = this.formatterArgs.getLabels(this.cellValue)
this.iLabels = [...this.initial]