Files
onboard/resources/js/Pages/Report/Components/PatientSection.vue
brusnitsyn bb9e67ab3d * изменил таблицы в основном отчете
* изменил метод сохранения пациентов основного отчета
2026-05-07 18:00:43 +09:00

17 lines
263 B
Vue

<script setup>
import { NCollapse } from 'naive-ui'
import {ref} from "vue";
const openedCollapsible = ref()
</script>
<template>
<NCollapse v-model:expanded-names="openedCollapsible">
<slot />
</NCollapse>
</template>
<style scoped>
</style>