reCoreD-UI/web/src/components/domains/DomainRemoveModal.vue
2024-04-08 13:49:11 +08:00

13 lines
208 B
Vue

<template>
<NModal :mask-closable="false" :show="show">
</NModal>
</template>
<script setup lang="ts">
import { NModal } from 'naive-ui'
const props = defineProps<{
show: boolean
}>()
</script>