ant-design/components/input/demo/password-input.md

21 lines
255 B
Markdown
Raw Normal View History

2018-11-29 10:03:16 +08:00
---
order: 10
title:
zh-CN: 密码框
en-US: Password box
---
## zh-CN
密码框。
## en-US
Input type of password.
````jsx
2018-12-05 15:24:16 +08:00
import { Input } from 'antd';
2018-12-02 17:28:24 +08:00
2018-12-05 15:24:16 +08:00
ReactDOM.render(<Input.Password placeholder="input password" />, mountNode);
2018-11-29 10:03:16 +08:00
````