20 lines
396 B
Vue
20 lines
396 B
Vue
|
<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>
|