处理Korsum 弹窗右侧表格数据不能行内修改的问题

This commit is contained in:
任珮宇 2023-12-12 12:02:50 +08:00
parent 5433dff98d
commit a35992098e

View File

@ -14,14 +14,14 @@ export default {
props: {
text: Number,
},
computed: {
value() {
return this.text
},
watch: {
text(newValue, oldValue) {
this.value = newValue
}
},
data() {
return {
// value: this.text,
value: "",
editable: false,
}
},