props.js 645 B

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