mirror of
https://github.com/element-plus/element-plus.git
synced 2025-03-07 15:47:57 +08:00
* style(components): [dialog] Modify dialog style and docs * chore: update * feat(components): [dialog] add overflow prop * feat(components): update
33 lines
816 B
Vue
33 lines
816 B
Vue
<template>
|
|
<el-button plain @click="outerVisible = true">
|
|
Open the outer Dialog
|
|
</el-button>
|
|
|
|
<el-dialog v-model="outerVisible" title="Outer Dialog" width="800">
|
|
<span>This is the outer Dialog</span>
|
|
<el-dialog
|
|
v-model="innerVisible"
|
|
width="500"
|
|
title="Inner Dialog"
|
|
append-to-body
|
|
>
|
|
<span>This is the inner Dialog</span>
|
|
</el-dialog>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button @click="outerVisible = false">Cancel</el-button>
|
|
<el-button type="primary" @click="innerVisible = true">
|
|
Open the inner Dialog
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const outerVisible = ref(false)
|
|
const innerVisible = ref(false)
|
|
</script>
|