mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
67cd7e95e6
* style(components): [dialog] Modify dialog style and docs * chore: update * feat(components): [dialog] add overflow prop * feat(components): update
40 lines
871 B
Vue
40 lines
871 B
Vue
<template>
|
|
<el-button plain @click="dialogVisible = true">
|
|
Click to open the Dialog
|
|
</el-button>
|
|
|
|
<el-dialog
|
|
v-model="dialogVisible"
|
|
title="Tips"
|
|
width="500"
|
|
:before-close="handleClose"
|
|
>
|
|
<span>This is a message</span>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button @click="dialogVisible = false">Cancel</el-button>
|
|
<el-button type="primary" @click="dialogVisible = false">
|
|
Confirm
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { ElMessageBox } from 'element-plus'
|
|
|
|
const dialogVisible = ref(false)
|
|
|
|
const handleClose = (done: () => void) => {
|
|
ElMessageBox.confirm('Are you sure to close this dialog?')
|
|
.then(() => {
|
|
done()
|
|
})
|
|
.catch(() => {
|
|
// catch error
|
|
})
|
|
}
|
|
</script>
|