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.
 
 

865 B

order title
3 [{zh-CN 从浮层内关闭} {en-US Controlling the close of the dialog}]

zh-CN

使用 visible 属性控制浮层显示。

en-US

Use visible prop to control the display of the card.

import { Popover, Button } from 'antd';

const App = React.createClass({
  getInitialState() {
    return {
      visible: false,
    };
  },
  hide() {
    this.setState({
      visible: false,
    });
  },
  handleVisibleChange(visible) {
    this.setState({ visible });
  },
  render() {
    return (
      <Popover
        content={<a onClick={this.hide}>Close</a>}
        title="Title"
        trigger="click"
        visible={this.state.visible}
        onVisibleChange={this.handleVisibleChange}
      >
        <Button type="primary">Cilck me</Button>
      </Popover>
    );
  },
});

ReactDOM.render(<App />, mountNode);