页面代码:
<template>
<view>
<PopupNew :show="showPopup">
<view>Ni Hao</view>
</PopupNew>
<button @click="showPopup = !showPopup">切换</button>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import PopupNew from '@/components/PopupNew.vue';
const showPopup = ref(false);
</script>
子组件代码:
<template>
<view v-if="show" key="1">
<slot />
</view>
</template>
<script setup lang="ts">
defineProps({
show: { type: Boolean, default: false }
});
</script>
1***@qq.com (作者)
感谢跟踪, 期待修复!
2024-03-26 16:33