option.mjs 450 B

12345678910111213141516171819202122
  1. import { buildProps } from "../../../utils/vue/props/runtime.mjs";
  2. //#region ../../packages/components/select/src/option.ts
  3. const COMPONENT_NAME = "ElOption";
  4. const optionProps = buildProps({
  5. value: {
  6. type: [
  7. String,
  8. Number,
  9. Boolean,
  10. Object
  11. ],
  12. required: true
  13. },
  14. label: { type: [String, Number] },
  15. created: Boolean,
  16. disabled: Boolean
  17. });
  18. //#endregion
  19. export { COMPONENT_NAME, optionProps };
  20. //# sourceMappingURL=option.mjs.map