@@ -7,6 +7,8 @@
:z-index="zIndex"
:lock-scroll="lockScroll"
:duration="duration"
+ :overlay-class="overlayClass"
+ :overlay-style="overlayStyle"
@click="onClickOverlay"
v-bind="$attrs"
/>
@@ -71,5 +71,13 @@ export const popupProps = {
safeAreaInsetBottom: {
type: Boolean,
default: false
+ },
+ overlayClass: {
+ type: String,
+ default: ''
+ overlayStyle: {
+ type: Object as PropType<CSSProperties>,
+ default: {}
}
};