props.js 578 B

12345678910111213141516171819202122232425262728293031323334353637
  1. const props = {
  2. closeBtn: {
  3. type: Boolean,
  4. value: true,
  5. },
  6. keys: {
  7. type: Object,
  8. },
  9. options: {
  10. type: Array,
  11. value: [],
  12. },
  13. subTitles: {
  14. type: Array,
  15. value: [],
  16. },
  17. theme: {
  18. type: String,
  19. value: 'step',
  20. },
  21. title: {
  22. type: String,
  23. },
  24. value: {
  25. type: null,
  26. value: null,
  27. },
  28. defaultValue: {
  29. type: null,
  30. value: null,
  31. },
  32. visible: {
  33. type: Boolean,
  34. value: false,
  35. },
  36. };
  37. export default props;