18 lines
365 B
JavaScript
18 lines
365 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.PopupDefaultProps = void 0;
|
|
var PopupDefaultProps = {
|
|
visible: false,
|
|
position: 'bottom',
|
|
// 是否开启动画
|
|
animation: true,
|
|
// 动画持续时间
|
|
duration: 300,
|
|
// 弹窗层级
|
|
zIndex: 998,
|
|
showMask: true
|
|
};
|
|
exports.PopupDefaultProps = PopupDefaultProps; |