92d88e471069c465cba735875b172c9b0739b3de2f819da009778ff1f316f28373e12bb23ef581b3839d6ddd08a0cc3e6b0b15278a4184bda3fe3c91e4b3cf 380 B

1234567891011121314151617
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. const COMPONENT_NAME = "ElOption";
  3. const optionProps = buildProps({
  4. value: {
  5. type: [String, Number, Boolean, Object],
  6. required: true
  7. },
  8. label: {
  9. type: [String, Number]
  10. },
  11. created: Boolean,
  12. disabled: Boolean
  13. });
  14. export { COMPONENT_NAME, optionProps };
  15. //# sourceMappingURL=option.mjs.map