【发布时间】:2018-03-30 04:58:10
【问题描述】:
我知道这里有类似的问题:
React-Intl How to use FormattedMessage in input placeholder
但我使用的是 TypeScript。
这段代码:
import { injectIntl, intlShape } from 'react-intl';
ChildComponent.propTypes = {
intl: intlShape.isRequired
}
对我不起作用。
如何使用格式化消息设置此占位符。
<InputPass
placeholder="Enter password"
/>
【问题讨论】:
标签: reactjs typescript react-intl