add domainRemovemodal

This commit is contained in:
Sense T 2024-04-08 13:49:11 +08:00
parent 69613f9b6e
commit 753e950fae

View File

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