We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前input组件的placeholder是处理了,代码如下:
placeholder={ placeholder === undefined ? locale.placeholder : placeholder }
而textarea没做这样的处理:
placeholder={placeholder || locale.placeholder}
导致的结果是传入空的placeholder替代不了老的placeholder
就按照input组件的写法,即可。。
The text was updated successfully, but these errors were encountered:
Alex-huxiyang
Successfully merging a pull request may close this issue.
这个功能解决了什么问题?
目前input组件的placeholder是处理了,代码如下:
而textarea没做这样的处理:
导致的结果是传入空的placeholder替代不了老的placeholder
你期望的组件设计是怎样的?
就按照input组件的写法,即可。。
The text was updated successfully, but these errors were encountered: