@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
21 lines (18 loc) • 438 B
JavaScript
import '../../../utils/index.mjs';
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const optionProps = buildProps({
value: {
type: definePropType([String, Number, Object]),
default: null
},
disabled: {
type: Boolean,
default: false
},
label: {
type: String
},
created: { type: Boolean, default: false }
});
export { optionProps };
//# sourceMappingURL=option.mjs.map