This commit is contained in:
xuliangzhan
2024-07-16 19:40:41 +08:00
parent f7bfc82f0d
commit 87c19c0f51
2 changed files with 2 additions and 3 deletions

View File

@@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.0.70"
"vxe-pc-ui": "^4.0.71"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",

View File

@@ -580,10 +580,9 @@ export default defineComponent({
VxeUIInputComponent
? h(VxeUIInputComponent, {
type: 'integer',
min: 40,
modelValue: column.renderResizeWidth,
'onUpdate:modelValue' (value: any) {
column.renderResizeWidth = Math.max(40, Number(value))
column.renderResizeWidth = Math.max(0, Number(value))
}
})
: createCommentVNode()