message 组件名更新....

This commit is contained in:
SimaQ 2015-10-29 08:53:54 +08:00
parent bc228af808
commit 0d2a6f9c3c
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
---
````jsx
import {Form, Input, Button, Checkbox, Radio, Row, Col, Message} from 'antd';
import {Form, Input, Button, Checkbox, Radio, Row, Col, message} from 'antd';
const FormItem = Form.Item;
const RadioGroup = Radio.Group;
@ -30,7 +30,7 @@ const Demo = React.createClass({
handleSubmit(e) {
e.preventDefault();
Message.success("收到表单值~~~ " + JSON.stringify(this.state.formData, function(k, v) {
message.success("收到表单值~~~ " + JSON.stringify(this.state.formData, function(k, v) {
if (typeof v === 'undefined') {
return '';
}

View File

@ -5,7 +5,7 @@
---
````jsx
import {Form, Input, Button, Checkbox, Message} from 'antd';
import {Form, Input, Button, Checkbox, message} from 'antd';
const FormItem = Form.Item;
const Demo = React.createClass({
@ -23,7 +23,7 @@ const Demo = React.createClass({
handleSubmit(e) {
e.preventDefault();
Message.success("收到表单值~~~ " + JSON.stringify(this.state.formData, function(k, v) {
message.success("收到表单值~~~ " + JSON.stringify(this.state.formData, function(k, v) {
if (typeof v === 'undefined') {
return '';
}

View File

@ -7,7 +7,7 @@
---
````jsx
import {Form, Input, Select, InputNumber, Datepicker, Switch, Menu, Dropdown, Slider, Icon, Button, Message, Row, Col} from 'antd';
import {Form, Input, Select, InputNumber, Datepicker, Switch, Menu, Dropdown, Slider, Icon, Button, message, Row, Col} from 'antd';
const FormItem = Form.Item;
const Option = Select.Option;