You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
393 B

1 year ago
  1. export const pickerProps = {
  2. title: String,
  3. loading: Boolean,
  4. showToolbar: Boolean,
  5. cancelButtonText: {
  6. type: String,
  7. value: '取消',
  8. },
  9. confirmButtonText: {
  10. type: String,
  11. value: '确认',
  12. },
  13. visibleItemCount: {
  14. type: Number,
  15. value: 6,
  16. },
  17. itemHeight: {
  18. type: Number,
  19. value: 44,
  20. },
  21. };