| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | export default {    props: {                show: {            type: Boolean,            default: uni.$u.props.actionSheet.show        },                title: {            type: String,            default: uni.$u.props.actionSheet.title        },                description: {            type: String,            default: uni.$u.props.actionSheet.description        },                actions: {            type: Array,            default: uni.$u.props.actionSheet.actions        },                cancelText: {            type: String,            default: uni.$u.props.actionSheet.cancelText        },                closeOnClickAction: {            type: Boolean,            default: uni.$u.props.actionSheet.closeOnClickAction        },                safeAreaInsetBottom: {            type: Boolean,            default: uni.$u.props.actionSheet.safeAreaInsetBottom        },                openType: {            type: String,            default: uni.$u.props.actionSheet.openType        },                closeOnClickOverlay: {            type: Boolean,            default: uni.$u.props.actionSheet.closeOnClickOverlay        },                round: {            type: [Boolean, String, Number],            default: uni.$u.props.actionSheet.round        }    }}
 |