checkbox-group-props.js 426 B

123456789101112131415161718192021222324252627
  1. const props = {
  2. disabled: {
  3. type: Boolean,
  4. value: false,
  5. },
  6. max: {
  7. type: Number,
  8. value: undefined,
  9. },
  10. name: {
  11. type: String,
  12. value: '',
  13. },
  14. options: {
  15. type: Array,
  16. value: [],
  17. },
  18. value: {
  19. type: Array,
  20. value: null,
  21. },
  22. defaultValue: {
  23. type: Array,
  24. value: [],
  25. },
  26. };
  27. export default props;