mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00
24 lines
582 B
Vue
24 lines
582 B
Vue
<template>
|
|
<el-button plain @click="dialogVisible = true">
|
|
Open the fullscreen Dialog
|
|
</el-button>
|
|
|
|
<el-dialog v-model="dialogVisible" fullscreen>
|
|
<span>It's a fullscreen Dialog</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'
|
|
|
|
const dialogVisible = ref(false)
|
|
</script>
|