Files
simrsx-fe/app/pages/(features)/infra-src/bed/index.vue
T
2025-11-24 08:17:07 +07:00

25 lines
482 B
Vue

<script setup lang="ts">
import Error from '~/components/pub/my-ui/error/error.vue'
definePageMeta({
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'Daftar Bed',
contentFrame: 'cf-container-lg',
})
const route = useRoute()
useHead({
title: () => route.meta.title as string,
})
const canRead = true
</script>
<template>
<template v-if="canRead">
<ContentBedList />
</template>
<Error v-else :status-code="403" />
</template>