You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
336 B

9 years ago
# 成功
- order: 0
9 years ago
操作成功反馈。
---
````jsx
import { message, Button } from 'antd';
const success = function() {
message.success('这是一条成功的提示');
};
9 years ago
ReactDOM.render(<Button type="primary" onClick={success}>显示成功提示</Button>
, document.getElementById('components-message-demo-success'));
````