Skip to content

Commit 27e3b92

Browse files
committed
refine
1 parent 7e1568a commit 27e3b92

File tree

2 files changed

+4
-4
lines changed
  • examples/src/docs

2 files changed

+4
-4
lines changed

examples/src/docs/en/ve-table/column-resize/basic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You can hover the mouse between two columns and drag
44

5-
:::demo 1、Set the min width of resize column through `minWidth`<br>2、Get the callback method of resize column changes through `sizeChange({ column, differWidth, columnWidth, tableWidth })`
5+
:::demo 1、Set the min width of resize column through `columnMinWidth`<br>2、Get the callback method of resize column changes through `sizeChange({ column, differWidth, columnWidth, tableWidth })`
66

77
```html
88
<template>
@@ -34,7 +34,7 @@ You can hover the mouse between two columns and drag
3434
// default false
3535
enable: true,
3636
// column resize min width
37-
minWidth: 30,
37+
columnMinWidth: 30,
3838
// column size change
3939
sizeChange: ({ column, differWidth, columnWidth, tableWidth }) => {
4040
this.columnResizeInfo.column = column;

examples/src/docs/zh/ve-table/column-resize/basic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
你可以将鼠标悬浮在两列之间,然后拖动即可
44

5-
:::demo 1、通过 `minWidth`设置列拖动的最小宽度<br>2、通过`sizeChange({ column, differWidth, columnWidth, tableWidth })`列拖动变化的回调信息
5+
:::demo 1、通过 `columnMinWidth`设置列拖动的最小宽度<br>2、通过`sizeChange({ column, differWidth, columnWidth, tableWidth })`列拖动变化的回调信息
66

77
```html
88
<template>
@@ -34,7 +34,7 @@
3434
// default false
3535
enable: true,
3636
// column resize min width
37-
minWidth: 30,
37+
columnMinWidth: 30,
3838
// column size change
3939
sizeChange: ({ column, differWidth, columnWidth, tableWidth }) => {
4040
this.columnResizeInfo.column = column;

0 commit comments

Comments
 (0)