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
393 B
20 lines
393 B
10 years ago
|
# 基本
|
||
|
|
||
|
- order: 1
|
||
|
|
||
|
全局提示 - 操作警告
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
|
||
|
var message = antd.message;
|
||
|
var error = function(){
|
||
|
message.error('这是一条失败的提示这是一条失败的提示这是一条失败的提示');
|
||
|
}
|
||
|
|
||
|
React.render(
|
||
|
<button className="ant-btn ant-btn-primary" onClick={error} >显示失败提示</button>, document.getElementById('components-message-demo-error')
|
||
|
);
|
||
|
|
||
|
````
|