mirror of
https://github.com/youzan/vant.git
synced 2025-10-22 11:54:02 +00:00
docs: update version tag
This commit is contained in:
@@ -110,26 +110,26 @@ Use `active-color` prop to custom active color of the title and options
|
||||
|
||||
### DropdownMenu Props
|
||||
|
||||
| Attribute | Description | Type | Default | Version |
|
||||
|------|------|------|------|------|
|
||||
| active-color | Active color of title and option | *string* | `#1989fa` | - |
|
||||
| z-index | z-index of menu item | *number* | `10` | - |
|
||||
| duration | Transition duration, unit second | *number* | `0.2` | - |
|
||||
| direction | Expand direction, can be set to `up` | *string* | `down` | 2.0.1 |
|
||||
| overlay | Whether to show overlay | *boolean* | `true` | - |
|
||||
| close-on-click-overlay | Whether to close when click overlay | *boolean* | `true` | - |
|
||||
| close-on-click-outside | Whether to close when click outside | *boolean* | `true` | 2.0.7 |
|
||||
| Attribute | Description | Type | Default |
|
||||
|------|------|------|------|
|
||||
| active-color | Active color of title and option | *string* | `#1989fa` |
|
||||
| z-index | z-index of menu item | *number* | `10` |
|
||||
| duration | Transition duration, unit second | *number* | `0.2` |
|
||||
| direction `v2.0.1` | Expand direction, can be set to `up` | *string* | `down` |
|
||||
| overlay | Whether to show overlay | *boolean* | `true` |
|
||||
| close-on-click-overlay | Whether to close when click overlay | *boolean* | `true` |
|
||||
| close-on-click-outside `v2.0.7` | Whether to close when click outside | *boolean* | `true` |
|
||||
|
||||
### DropdownItem Props
|
||||
|
||||
| Attribute | Description | Type | Default | Version |
|
||||
|------|------|------|------|------|
|
||||
| value | Value of current option,can use `v-model` | *string \| number* | - | - |
|
||||
| title | Item title | *string* | Text of selected option | - |
|
||||
| options | Options | *Option[]* | `[]` | - |
|
||||
| disabled | Whether to disable dropdown item | *boolean* | `false` | - |
|
||||
| title-class | Title class | *string* | - | - |
|
||||
| get-container | Return the mount node for menu | *string \| () => Element* | - | 2.2.4 |
|
||||
| Attribute | Description | Type | Default |
|
||||
|------|------|------|------|
|
||||
| value | Value of current option,can use `v-model` | *string \| number* | - |
|
||||
| title | Item title | *string* | Text of selected option |
|
||||
| options | Options | *Option[]* | `[]` |
|
||||
| disabled | Whether to disable dropdown item | *boolean* | `false` |
|
||||
| title-class | Title class | *string* | - |
|
||||
| get-container `v2.2.4` | Return the mount node for menu | *string \| () => Element* | - |
|
||||
|
||||
### DropdownItem Events
|
||||
|
||||
|
@@ -114,26 +114,26 @@ export default {
|
||||
|
||||
### DropdownMenu Props
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||
|------|------|------|------|------|
|
||||
| active-color | 菜单标题和选项的选中态颜色 | *string* | `#1989fa` | - |
|
||||
| z-index | 菜单栏 z-index 层级 | *number* | `10` | - |
|
||||
| duration | 动画时长,单位秒 | *number* | `0.2` | - |
|
||||
| direction | 菜单展开方向,可选值为`up` | *string* | `down` | 2.0.1 |
|
||||
| overlay | 是否显示遮罩层 | *boolean* | `true` | - |
|
||||
| close-on-click-overlay | 是否在点击遮罩层后关闭菜单 | *boolean* | `true` | - |
|
||||
| close-on-click-outside | 是否在点击外部元素后关闭菜单 | *boolean* | `true` | 2.0.7 |
|
||||
| 参数 | 说明 | 类型 | 默认值 |
|
||||
|------|------|------|------|
|
||||
| active-color | 菜单标题和选项的选中态颜色 | *string* | `#1989fa` |
|
||||
| z-index | 菜单栏 z-index 层级 | *number* | `10` |
|
||||
| duration | 动画时长,单位秒 | *number* | `0.2` |
|
||||
| direction `v2.0.1` | 菜单展开方向,可选值为`up` | *string* | `down` |
|
||||
| overlay | 是否显示遮罩层 | *boolean* | `true` |
|
||||
| close-on-click-overlay | 是否在点击遮罩层后关闭菜单 | *boolean* | `true` |
|
||||
| close-on-click-outside `v2.0.7` | 是否在点击外部元素后关闭菜单 | *boolean* | `true` |
|
||||
|
||||
### DropdownItem Props
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||
|------|------|------|------|------|
|
||||
| value | 当前选中项对应的 value,可以通过`v-model`双向绑定 | *string \| number* | - | - |
|
||||
| title | 菜单项标题 | *string* | 当前选中项文字 | - |
|
||||
| options | 选项数组 | *Option[]* | `[]` | - |
|
||||
| disabled | 是否禁用菜单 | *boolean* | `false` | - |
|
||||
| title-class | 标题额外类名 | *string* | - | - |
|
||||
| get-container | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | *string \| () => Element* | - | 2.2.4 |
|
||||
| 参数 | 说明 | 类型 | 默认值 |
|
||||
|------|------|------|------|
|
||||
| value | 当前选中项对应的 value,可以通过`v-model`双向绑定 | *string \| number* | - |
|
||||
| title | 菜单项标题 | *string* | 当前选中项文字 |
|
||||
| options | 选项数组 | *Option[]* | `[]` |
|
||||
| disabled | 是否禁用菜单 | *boolean* | `false` |
|
||||
| title-class | 标题额外类名 | *string* | - |
|
||||
| get-container `v2.2.4` | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | *string \| () => Element* | - |
|
||||
|
||||
### DropdownItem Events
|
||||
|
||||
|
Reference in New Issue
Block a user