props.js 514 B

12345678910111213141516171819202122232425262728293031323334
  1. const props = {
  2. confirmBtn: {
  3. type: null,
  4. value: '',
  5. },
  6. firstDayOfWeek: {
  7. type: Number,
  8. value: 0,
  9. },
  10. format: {
  11. type: null,
  12. },
  13. maxDate: {
  14. type: null,
  15. },
  16. minDate: {
  17. type: null,
  18. },
  19. title: {
  20. type: String,
  21. },
  22. type: {
  23. type: String,
  24. value: 'single',
  25. },
  26. value: {
  27. type: null,
  28. },
  29. visible: {
  30. type: Boolean,
  31. value: false,
  32. },
  33. };
  34. export default props;