props.js 448 B

1234567891011121314151617181920212223242526272829
  1. const props = {
  2. customStyle: {
  3. type: String,
  4. value: '',
  5. },
  6. height: {
  7. type: null,
  8. value: 336,
  9. },
  10. keys: {
  11. type: Object,
  12. },
  13. multiple: {
  14. type: Boolean,
  15. value: false,
  16. },
  17. options: {
  18. type: Array,
  19. value: [],
  20. },
  21. value: {
  22. type: null,
  23. value: null,
  24. },
  25. defaultValue: {
  26. type: null,
  27. },
  28. };
  29. export default props;