Files
kartoteka/resources/js/Pages/Home/ArchiveHistoryModal/Index.vue
2025-12-01 17:38:11 +09:00

17 lines
237 B
Vue

<script setup>
import { NModal } from 'naive-ui'
const open = defineModel('open')
</script>
<template>
<NModal v-model:show="open">
<template #header>
</template>
</NModal>
</template>
<style scoped>
</style>