UNPKG

@opensig/opendesign

Version:

<p align="center"><img src="../docs/public/opendesign-logo-light.png"/></p> <h1 align="center">opendesign</h1> <p align="center">一个 Vue 3 组件库</p> <p align="center"><b>皮肤可定制,使用 TypeScript</b></p>

39 lines (38 loc) 519 B
const radioProps = { /** * 单选框value */ value: { type: [String, Number, Boolean], required: true }, /** * 单选框双向绑定值 */ modelValue: { type: [String, Number, Boolean] }, /** * 非受控状态时,默认是否选中 */ defaultChecked: { type: Boolean, default: false }, /** * 是否禁用 */ disabled: { type: Boolean, default: false }, /** * input id */ inputId: { type: String } }; export { radioProps };