mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
9c51dab123
* feat(components): [dialog] a11y and focus trap on dialog components * feat(components): [dialog] remove default browser focus style * feat(components): [dialog] clean up async and comment
24 lines
712 B
Vue
24 lines
712 B
Vue
<template>
|
|
<el-button @click="visible = true">
|
|
Open Drawer with customized header
|
|
</el-button>
|
|
<el-drawer v-model="visible" :show-close="false">
|
|
<template #header="{ close, titleId, titleClass }">
|
|
<h4 :id="titleId" :class="titleClass">This is a custom header!</h4>
|
|
<el-button type="danger" @click="close">
|
|
<el-icon class="el-icon--left"><CircleCloseFilled /></el-icon>
|
|
Close
|
|
</el-button>
|
|
</template>
|
|
This is drawer content.
|
|
</el-drawer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { CircleCloseFilled } from '@element-plus/icons-vue'
|
|
import type { ElButton, ElDrawer } from 'element-plus'
|
|
|
|
const visible = ref(false)
|
|
</script>
|