feat(Popup): overlay-class can be array or object (#7924)

This commit is contained in:
neverland 2021-01-16 19:35:50 +08:00 committed by GitHub
parent aeb3af4abd
commit e43ec34964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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` |

View File

@ -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` |

View File

@ -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