props.js 622 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. const props = {
  2. align: {
  3. type: String,
  4. value: 'center',
  5. },
  6. cancelText: {
  7. type: String,
  8. value: '取消',
  9. },
  10. count: {
  11. type: Number,
  12. value: 8,
  13. },
  14. description: {
  15. type: String,
  16. value: '',
  17. },
  18. items: {
  19. type: Array,
  20. },
  21. showCancel: {
  22. type: Boolean,
  23. value: true,
  24. },
  25. theme: {
  26. type: String,
  27. value: 'list',
  28. },
  29. visible: {
  30. type: Boolean,
  31. value: null,
  32. },
  33. defaultVisible: {
  34. type: Boolean,
  35. value: false,
  36. },
  37. };
  38. export default props;