mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
3f72ec5818
* test(ssr): add ssr testing cases - Add cases for backtop, badge, breadcrumb, button, calendar - Fix a issue which caused backtop not SSR renderable * Update card, carousel cascader test cases * Add more cases
26 lines
641 B
Vue
26 lines
641 B
Vue
<template>
|
|
<el-button type="text" @click="dialogVisible = true"
|
|
>click to open the Dialog</el-button
|
|
>
|
|
|
|
<el-dialog v-model="dialogVisible" title="Tips" width="30%">
|
|
<span>This is a message</span>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button style="margin-right: 10px" @click="dialogVisible = false"
|
|
>Cancel</el-button
|
|
>
|
|
<el-button type="primary" @click="dialogVisible = false"
|
|
>Confirm</el-button
|
|
>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const dialogVisible = ref(true)
|
|
</script>
|