option.mjs 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