mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
b77753c854
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
24 lines
707 B
Vue
24 lines
707 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 { ElButton, ElDrawer } from 'element-plus'
|
|
import { CircleCloseFilled } from '@element-plus/icons-vue'
|
|
|
|
const visible = ref(false)
|
|
</script>
|