储能智慧云小程序
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.

props.js 755B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. const props = {
  2. autoClose: {
  3. type: Boolean,
  4. value: true,
  5. },
  6. confirmBtn: {
  7. type: null,
  8. value: '',
  9. },
  10. firstDayOfWeek: {
  11. type: Number,
  12. value: 0,
  13. },
  14. format: {
  15. type: null,
  16. },
  17. maxDate: {
  18. type: Number,
  19. },
  20. minDate: {
  21. type: Number,
  22. },
  23. title: {
  24. type: String,
  25. value: '请选择日期',
  26. },
  27. type: {
  28. type: String,
  29. value: 'single',
  30. },
  31. usePopup: {
  32. type: Boolean,
  33. value: true,
  34. },
  35. value: {
  36. type: null,
  37. value: null,
  38. },
  39. defaultValue: {
  40. type: null,
  41. },
  42. visible: {
  43. type: Boolean,
  44. value: false,
  45. },
  46. };
  47. export default props;