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>

50 lines (49 loc) 569 B
const inBoxProps = { /** * 大小 SizeT */ size: { type: String }, /** * 圆角值 RoundT */ round: { type: String }, /** * 颜色类型 Color2T */ color: { type: String, default: "normal" }, /** * 按钮类型 VariantT */ variant: { type: String, default: "outline" }, /** * 是否聚焦 */ focused: { type: Boolean }, /** * 是否禁用 */ disabled: { type: Boolean }, /** * 是否只读 */ readonly: { type: Boolean } }; export { inBoxProps };