12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- show: {
- type: Boolean,
- default: defprops.actionSheet.show
- },
-
- title: {
- type: String,
- default: defprops.actionSheet.title
- },
-
- description: {
- type: String,
- default: defprops.actionSheet.description
- },
-
- actions: {
- type: Array,
- default: defprops.actionSheet.actions
- },
-
- cancelText: {
- type: String,
- default: defprops.actionSheet.cancelText
- },
-
- closeOnClickAction: {
- type: Boolean,
- default: defprops.actionSheet.closeOnClickAction
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: defprops.actionSheet.safeAreaInsetBottom
- },
-
- openType: {
- type: String,
- default: defprops.actionSheet.openType
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: defprops.actionSheet.closeOnClickOverlay
- },
-
- round: {
- type: [Boolean, String, Number],
- default: defprops.actionSheet.round
- }
- }
- }
|