ant-design-vue/components/drawer/demo/basic-left.md

48 lines
759 B
Markdown

<cn>
#### 左侧滑出
基础抽屉,点击触发按钮抽屉从左滑出,点击遮罩区关闭
</cn>
<us>
#### Left Slider
Basic drawer.
</us>
```html
<template>
<div>
<a-button type="primary" @click="showDrawer">
Open
</a-button>
<a-drawer
placement="left"
:closable="false"
@close="onClose"
:visible="visible"
>
<span slot="title">Basic Drawer</span>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</a-drawer>
</div>
</template>
<script>
export default {
data() {
return {
visible: false,
}
},
methods: {
showDrawer() {
this.visible = true
},
onClose() {
this.visible = false
},
},
}
</script>
```