actionSheet.js 591 B

12345678910111213141516171819202122232425
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 16:44:35
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/actionSheet.js
  9. */
  10. export default {
  11. // action-sheet组件
  12. actionSheet: {
  13. show: false,
  14. title: '',
  15. description: '',
  16. actions: () => [],
  17. index: '',
  18. cancelText: '',
  19. closeOnClickAction: true,
  20. safeAreaInsetBottom: true,
  21. openType: '',
  22. closeOnClickOverlay: true,
  23. round: 0
  24. }
  25. }