bug 标准预警

This commit is contained in:
赵霄
2023-11-29 15:36:44 +08:00
parent b0013fc842
commit 35aea9de91
2 changed files with 7 additions and 6 deletions
+4 -3
View File
@@ -38,12 +38,13 @@ export default {
watch: {
value: {
handler () {
if (this.value) {
if (typeof this.value !== 'string' && this.value) {
this.treeValue = JSON.parse(JSON.stringify(this.value))
} else {
this.treeValue = this.value
}
},
immediate: true,
deep: true
immediate: true
}
},
data () {