处理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: { props: {
text: Number, text: Number,
}, },
computed: { watch: {
value() { text(newValue, oldValue) {
return this.text this.value = newValue
}, }
}, },
data() { data() {
return { return {
// value: this.text, value: "",
editable: false, editable: false,
} }
}, },