tdesign-mobile-vue
Version:
tdesign-mobile-vue
70 lines (67 loc) • 1.19 kB
JavaScript
/**
* tdesign v1.9.3
* (c) 2025 TDesign Group
* @license MIT
*/
var props = {
actions: {
type: [Array, Function]
},
buttonLayout: {
type: String,
default: "horizontal",
validator: function validator(val) {
if (!val) return true;
return ["horizontal", "vertical"].includes(val);
}
},
cancelBtn: {
type: [String, Object, Function]
},
closeBtn: Boolean,
closeOnOverlayClick: Boolean,
confirmBtn: {
type: [String, Object, Function]
},
content: {
type: [String, Function]
},
destroyOnClose: Boolean,
middle: {
type: Function
},
overlayProps: {
type: Object,
default: function _default() {
return {};
}
},
preventScrollThrough: {
type: Boolean,
default: true
},
showOverlay: {
type: Boolean,
default: true
},
title: {
type: [String, Function]
},
top: {
type: Function
},
visible: Boolean,
width: {
type: [String, Number]
},
zIndex: {
type: Number
},
onCancel: Function,
onClose: Function,
onClosed: Function,
onConfirm: Function,
onOverlayClick: Function
};
export { props as default };
//# sourceMappingURL=props.mjs.map