mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Popup): overlay-class can be array or object (#7924)
This commit is contained in:
parent
aeb3af4abd
commit
e43ec34964
@ -119,7 +119,7 @@ export default {
|
|||||||
| v-model:show | Whether to show popup | _boolean_ | `false` |
|
| v-model:show | Whether to show popup | _boolean_ | `false` |
|
||||||
| overlay | Whether to show overlay | _boolean_ | `true` |
|
| overlay | Whether to show overlay | _boolean_ | `true` |
|
||||||
| position | Can be set to `top` `bottom` `right` `left` | _string_ | `center` |
|
| position | Can be set to `top` `bottom` `right` `left` | _string_ | `center` |
|
||||||
| overlay-class | Custom overlay class | _string_ | - |
|
| overlay-class | Custom overlay class | _string \| string[] \| object_ | - |
|
||||||
| overlay-style | Custom overlay style | _object_ | - |
|
| overlay-style | Custom overlay style | _object_ | - |
|
||||||
| duration | Transition duration, unit second | _number \| string_ | `0.3` |
|
| duration | Transition duration, unit second | _number \| string_ | `0.3` |
|
||||||
| round | Whether to show round corner | _boolean_ | `false` |
|
| round | Whether to show round corner | _boolean_ | `false` |
|
||||||
|
@ -129,7 +129,7 @@ export default {
|
|||||||
| v-model:show | 是否显示弹出层 | _boolean_ | `false` |
|
| v-model:show | 是否显示弹出层 | _boolean_ | `false` |
|
||||||
| overlay | 是否显示遮罩层 | _boolean_ | `true` |
|
| overlay | 是否显示遮罩层 | _boolean_ | `true` |
|
||||||
| position | 弹出位置,可选值为 `top` `bottom` `right` `left` | _string_ | `center` |
|
| position | 弹出位置,可选值为 `top` `bottom` `right` `left` | _string_ | `center` |
|
||||||
| overlay-class | 自定义遮罩层类名 | _string_ | - |
|
| overlay-class | 自定义遮罩层类名 | _string \| string[] \| object_ | - |
|
||||||
| overlay-style | 自定义遮罩层样式 | _object_ | - |
|
| overlay-style | 自定义遮罩层样式 | _object_ | - |
|
||||||
| duration | 动画时长,单位秒 | _number \| string_ | `0.3` |
|
| duration | 动画时长,单位秒 | _number \| string_ | `0.3` |
|
||||||
| round | 是否显示圆角 | _boolean_ | `false` |
|
| round | 是否显示圆角 | _boolean_ | `false` |
|
||||||
|
@ -45,7 +45,7 @@ export const popupSharedProps = {
|
|||||||
// overlay custom style
|
// overlay custom style
|
||||||
overlayStyle: Object,
|
overlayStyle: Object,
|
||||||
// overlay custom class name
|
// overlay custom class name
|
||||||
overlayClass: String,
|
overlayClass: null,
|
||||||
// Initial rendering animation
|
// Initial rendering animation
|
||||||
transitionAppear: Boolean,
|
transitionAppear: Boolean,
|
||||||
// whether to show overlay
|
// whether to show overlay
|
||||||
|
Loading…
x
Reference in New Issue
Block a user