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>

34 lines (33 loc) 469 B
import { inTextareaProps } from "../_components/in-textarea/types.mjs"; const textareaProps = { ...inTextareaProps, /** * 大小 SizeT */ size: { type: String }, /** * 圆角值 RoundT */ round: { type: String }, /** * 颜色类型 Color2T */ color: { type: String, default: "normal" }, /** * 按钮类型 VariantT */ variant: { type: String, default: "outline" } }; export { textareaProps };