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.

58 lines
943 B

7 years ago
---
order: 0
title:
7 years ago
zh-CN: 基础抽屉
7 years ago
en-US: Basic
---
## zh-CN
7 years ago
基础抽屉,点击触发按钮抽屉从右滑出,点击遮罩区关闭
7 years ago
## en-US
Basic drawer.
7 years ago
```jsx
import { Drawer, Button } from 'antd';
class App extends React.Component {
state = { visible: false };
6 years ago
7 years ago
showDrawer = () => {
this.setState({
visible: true,
});
};
6 years ago
7 years ago
onClose = () => {
this.setState({
visible: false,
});
7 years ago
};
6 years ago
7 years ago
render() {
return (
<div>
<Button type="primary" onClick={this.showDrawer}>
Open
</Button>
<Drawer
title="Basic Drawer"
7 years ago
placement="right"
7 years ago
closable={false}
7 years ago
onClose={this.onClose}
visible={this.state.visible}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Drawer>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
```