reCoreD-UI/web/src/components/domains/DomainRemoveModal.vue

13 lines
208 B
Vue
Raw Normal View History

2024-04-08 05:49:11 +00:00
<template>
<NModal :mask-closable="false" :show="show">
</NModal>
</template>
<script setup lang="ts">
import { NModal } from 'naive-ui'
const props = defineProps<{
show: boolean
}>()
</script>