mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 10:00:58 +08:00
35 lines
856 B
Vue
35 lines
856 B
Vue
<template>
|
|
<el-button plain @click="visible = true">
|
|
Open Dialog with customized header
|
|
</el-button>
|
|
|
|
<el-dialog v-model="visible" :show-close="false" width="500">
|
|
<template #header="{ close, titleId, titleClass }">
|
|
<div class="my-header">
|
|
<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>
|
|
</div>
|
|
</template>
|
|
This is dialog content.
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { CircleCloseFilled } from '@element-plus/icons-vue'
|
|
|
|
const visible = ref(false)
|
|
</script>
|
|
|
|
<style scoped>
|
|
.my-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
</style>
|