You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
342 B
Markdown
22 lines
342 B
Markdown
10 years ago
|
# 可关闭的警告提示
|
||
|
|
||
|
- order: 1
|
||
|
|
||
|
显示关闭按钮,点击可关闭警告提示。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Alert = require('antd/lib/alert');
|
||
|
|
||
|
React.render(
|
||
|
<div>
|
||
|
<Alert
|
||
|
message="警告提示的文案"
|
||
|
type="success"
|
||
|
closable="true"
|
||
|
/>
|
||
|
</div>,
|
||
|
document.getElementById('components-alert-demo-closable'));
|
||
|
````
|