adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
24 lines (21 loc) • 385 B
Markdown
order: 1
title:
zh-CN: 段落文本
en-US: Textarea
段落文本输入 `Input.Textarea`:
```jsx
const [value, setValue] = useState("")
return (
<div>
<Input.Textarea
limit={15}
onChange={({ target: { value: val } }) => setValue(val)}
value={value}
inputStyle={{ width: "240px", height: "120px" }}
resize="both"
/>
</div>
)
```