acdr-ui/src/pages/Modal/index.vue

20 lines
396 B
Vue
Raw Normal View History

2024-09-18 11:39:19 +08:00
<template>
<button @click="showModal">显示弹窗</button>
<Modal
:isVisible="isModalVisible"
@update:isVisible="isModalVisible = $event"
message="这是一个弹窗内容!"
/>
</template>
<script setup>
import { ref } from 'vue'
import Modal from './authentication/1.vue'
const isModalVisible = ref(false)
function showModal() {
isModalVisible.value = true
}
</script>