city-casereport/miniprogram_npm/tdesign-miniprogram/dialog/props.js

53 lines
863 B
JavaScript
Raw Normal View History

2023-12-06 14:22:42 +08:00
const props = {
actions: {
type: Array,
},
buttonLayout: {
type: String,
value: 'horizontal',
},
cancelBtn: {
type: null,
},
closeBtn: {
type: null,
value: false,
},
closeOnOverlayClick: {
type: Boolean,
value: undefined,
},
confirmBtn: {
type: null,
},
content: {
type: String,
},
externalClasses: {
type: Array,
},
overlayProps: {
type: Object,
value: {},
},
preventScrollThrough: {
type: Boolean,
value: true,
},
showOverlay: {
type: Boolean,
value: true,
},
title: {
type: String,
},
visible: {
type: Boolean,
},
zIndex: {
type: Number,
value: 11500,
},
};
export default props;