Files
HuajisheTools/HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/action-sheet/props.js
2025-10-01 10:01:52 +08:00

54 lines
901 B
JavaScript

const props = {
align: {
type: String,
value: 'center',
},
cancelText: {
type: String,
value: '',
},
count: {
type: Number,
value: 8,
},
description: {
type: String,
value: '',
},
items: {
type: Array,
required: true,
},
popupProps: {
type: Object,
value: {},
},
showCancel: {
type: Boolean,
value: true,
},
showOverlay: {
type: Boolean,
value: true,
},
theme: {
type: String,
value: 'list',
},
usingCustomNavbar: {
type: Boolean,
value: false,
},
visible: {
type: Boolean,
value: null,
required: true,
},
defaultVisible: {
type: Boolean,
value: false,
required: true,
},
};
export default props;