# 基本 - order: 0 第一个对话框。 --- ````jsx import { Modal, Button } from 'antd'; const App = React.createClass({ getInitialState() { return { visible: false }; }, showModal() { this.setState({ visible: true }); }, handleOk() { console.log('点击了确定'); this.setState({ visible: false }); }, handleCancel() { this.setState({ visible: false }); }, render() { return
对话框的内容
对话框的内容
对话框的内容