water_xcx/miniprogram_npm/tdesign-miniprogram/action-sheet/props.js

31 lines
488 B
JavaScript
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
const props = {
cancelText: {
type: String,
value: '取消',
},
count: {
type: Number,
value: 8,
},
items: {
type: Array,
},
showCancel: {
type: Boolean,
value: true,
},
theme: {
type: String,
value: 'list',
},
visible: {
type: Boolean,
value: null,
},
defaultVisible: {
type: Boolean,
value: false,
},
};
export default props;