docs: add new props tag (#11941)

* docs: add 4.4.1 props tag

* docs: add 4.4.0 props tag

* docs: add 4.2.0 props tag

* docs: add new  props tag
This commit is contained in:
ShuGang Zhou 2023-06-04 21:08:58 +08:00 committed by GitHub
parent b8424849f0
commit 514f56a322
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 13 additions and 13 deletions

View File

@ -74,7 +74,7 @@ Text
| dashed | Whether to use dashed border | _boolean_ | `false` |
| hairline | Whether to use hairline | _boolean_ | `true` |
| content-position | Content position, can be set to `left` `right` | _string_ | `center` |
| vertical | Whether to use vertical | _boolean_ | `false` |
| vertical `v4.4.0` | Whether to use vertical | _boolean_ | `false` |
### Slots

View File

@ -79,12 +79,12 @@ app.use(Divider);
### Props
| 参数 | 说明 | 类型 | 默认值 |
| ---------------- | --------------------------------- | --------- | -------- |
| dashed | 是否使用虚线 | _boolean_ | `false` |
| hairline | 是否使用 0.5px 线 | _boolean_ | `true` |
| content-position | 内容位置,可选值为 `left` `right` | _string_ | `center` |
| vertical | 是否使用垂直 | _boolean_ | `false` |
| 参数 | 说明 | 类型 | 默认值 |
| ----------------- | --------------------------------- | --------- | -------- |
| dashed | 是否使用虚线 | _boolean_ | `false` |
| hairline | 是否使用 0.5px 线 | _boolean_ | `true` |
| content-position | 内容位置,可选值为 `left` `right` | _string_ | `center` |
| vertical `v4.4.0` | 是否使用垂直 | _boolean_ | `false` |
### Slots

View File

@ -283,7 +283,7 @@ export default {
| --- | --- | --- | --- |
| v-model:show | Whether to show Popover | _boolean_ | `false` |
| actions | Actions | _PopoverAction[]_ | `[]` |
| actions-direction | Direction of actions, can be set to `horizontal` | _PopoverActionsDirection_ | `vertical` |
| actions-direction `v4.4.1` | Direction of actions, can be set to `horizontal` | _PopoverActionsDirection_ | `vertical` |
| placement | Placement | _PopoverPlacement_ | `bottom` |
| theme | Theme, can be set to `dark` | _PopoverTheme_ | `light` |
| trigger | Trigger mode, can be set to `manual` | _PopoverTrigger_ | `click` |

View File

@ -293,7 +293,7 @@ export default {
| --- | --- | --- | --- |
| v-model:show | 是否展示气泡弹出层 | _boolean_ | `false` |
| actions | 选项列表 | _PopoverAction[]_ | `[]` |
| actions-direction | 选项列表的排列方向,可选值为 `horizontal` | _PopoverActionsDirection_ | `vertical` |
| actions-direction `v4.4.1` | 选项列表的排列方向,可选值为 `horizontal` | _PopoverActionsDirection_ | `vertical` |
| placement | 弹出位置 | _PopoverPlacement_ | `bottom` |
| theme | 主题风格,可选值为 `dark` | _PopoverTheme_ | `light` |
| trigger | 触发方式,可选值为 `manual` | _PopoverTrigger_ | `click` |

View File

@ -91,7 +91,7 @@ export default {
| content | The text displayed | _string_ | - |
| expand-text | Expand operation text | _string_ | - |
| collapse-text | Collapse operation text | _string_ | - |
| dots | Text content of ellipsis | _string_ | `'...'` |
| dots `v4.2.0` | Text content of ellipsis | _string_ | `'...'` |
### Events

View File

@ -86,7 +86,7 @@ export default {
| content | 需要展示的文本 | _string_ | - |
| expand-text | 展开操作的文案 | _string_ | - |
| collapse-text | 收起操作的文案 | _string_ | - |
| dots | 省略号的文本内容 | _string_ | `'...'` |
| dots `v4.2.0` | 省略号的文本内容 | _string_ | `'...'` |
### Events

View File

@ -335,7 +335,7 @@ export default {
| disabled | Whether to disabled the upload | _boolean_ | `false` |
| readonly | Whether to make upload area readonly | _boolean_ | `false` |
| deletable | Whether to show delete icon | _boolean_ | `true` |
| reupload | Whether to enable reupload, if enabled, the image preview will be disabled | _boolean_ | `false` |
| reupload `v4.4.0` | Whether to enable reupload, if enabled, the image preview will be disabled | _boolean_ | `false` |
| show-upload | Whether to show upload area | _boolean_ | `true` |
| lazy-load | Whether to enable lazy load, should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` |
| capture | Capture, can be set to `camera` | _string_ | - |

View File

@ -354,7 +354,7 @@ export default {
| disabled | 是否禁用文件上传 | _boolean_ | `false` |
| readonly | 是否将上传区域设置为只读状态 | _boolean_ | `false` |
| deletable | 是否展示删除按钮 | _boolean_ | `true` |
| reupload | 是否开启覆盖上传,开启后会关闭图片预览 | _boolean_ | `false` |
| reupload `v4.4.0` | 是否开启覆盖上传,开启后会关闭图片预览 | _boolean_ | `false` |
| show-upload | 是否展示上传区域 | _boolean_ | `true` |
| lazy-load | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | _boolean_ | `false` |
| capture | 图片选取模式,可选值为 `camera` (直接调起摄像头) | _string_ | - |