提交 d36d59ce 编写于 作者: O oasis-cloud

fix: textarea placeholder 设置不生效

上级 eb2be568
......@@ -29,7 +29,7 @@ const defaultProps = {
limitshow: false,
maxlength: '',
rows: '',
placeholder: '请输入内容',
placeholder: '',
readonly: false,
disabled: false,
autosize: false,
......@@ -126,7 +126,7 @@ export const TextArea: FunctionComponent<
}}
rows={rows}
maxLength={maxlength < 0 ? 0 : maxlength}
placeholder={locale.placeholder}
placeholder={placeholder || locale.placeholder}
/>
{limitshow ? (
<div className={textareaBem('limit')}>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册