UNPKG

element-plus

Version:

A Component Library for Vue 3

30 lines (26 loc) 610 B
'use strict'; var runtime = require('../../../utils/vue/props/runtime.js'); const COMPONENT_NAME = "ElOption"; const optionProps = runtime.buildProps({ /** * @description value of option */ value: { type: [String, Number, Boolean, Object], required: true }, /** * @description label of option, same as `value` if omitted */ label: { type: [String, Number] }, created: Boolean, /** * @description whether option is disabled */ disabled: Boolean }); exports.COMPONENT_NAME = COMPONENT_NAME; exports.optionProps = optionProps; //# sourceMappingURL=option.js.map