mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Popover): add duration prop (#8355)
This commit is contained in:
parent
c452926cd1
commit
b119d4ad41
@ -32,6 +32,7 @@ const [name, bem] = createNamespace('popover');
|
||||
const popupProps = [
|
||||
'show',
|
||||
'overlay',
|
||||
'duration',
|
||||
'teleport',
|
||||
'overlayStyle',
|
||||
'overlayClass',
|
||||
@ -68,6 +69,7 @@ export default defineComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
overlay: Boolean,
|
||||
duration: [Number, String],
|
||||
overlayClass: UnknownProp,
|
||||
overlayStyle: Object as PropType<CSSProperties>,
|
||||
offset: {
|
||||
|
@ -209,6 +209,7 @@ export default {
|
||||
| placement | Placement | _string_ | `bottom` |
|
||||
| theme | Theme,can be set to `dark` | _string_ | `light` |
|
||||
| trigger | Trigger mode,can be set to `manual` | `click` |
|
||||
| duration | Transition duration, unit second | _number \| string_ | `0.3` |
|
||||
| offset | Distance to reference | _[number, number]_ | `[0, 8]` |
|
||||
| overlay | Whether to show overlay | _boolean_ | `false` |
|
||||
| overlay-class `v3.0.10` | Custom overlay class | _string \| Array \| object_ | - |
|
||||
|
@ -223,6 +223,7 @@ export default {
|
||||
| placement | 弹出位置 | _string_ | `bottom` |
|
||||
| theme | 主题风格,可选值为 `dark` | _string_ | `light` |
|
||||
| trigger | 触发方式,可选值为 `manual` | `click` |
|
||||
| duration | 动画时长,单位秒 | _number \| string_ | `0.3` |
|
||||
| offset | 出现位置的偏移量 | _[number, number]_ | `[0, 8]` |
|
||||
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
|
||||
| overlay-class `v3.0.10` | 自定义遮罩层类名 | _string \| Array \| object_ | - |
|
||||
|
Loading…
x
Reference in New Issue
Block a user