diff --git a/components/popover/demo/control.md b/components/popover/demo/control.md new file mode 100644 index 0000000000..a07591bee6 --- /dev/null +++ b/components/popover/demo/control.md @@ -0,0 +1,38 @@ +# 从浮层内关闭 + +- order: 3 + +使用 `visible` 属性控制浮层显示。 + +--- + +````jsx +import { Popover, Button } from 'antd'; + +const App = React.createClass({ + getInitialState() { + return { + visible: false + }; + }, + hide() { + this.setState({ + visible: false + }); + }, + handleVisibleChange(visible) { + this.setState({ visible }); + }, + render() { + const content =