Files
hrm/app/components/viewer/EmployeeInfoBlock.vue
2026-04-06 15:53:14 +07:00

12 lines
208 B
Vue

<script setup>
const props = defineProps({
label: String,
});
</script>
<template>
<div class="cell">
<p class="fs-14 has-text-grey mb-1">{{ label }}</p>
<p><slot></slot></p>
</div>
</template>