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

17 lines
204 B
Vue

<script setup>
const props = defineProps({
index: {
type: [String, Number],
default: null
}
})
</script>
<template>
<div>{{index}}</div>
</template>
<style scoped>
</style>