Initial commit
This commit is contained in:
11
app/components/viewer/EmployeeInfoBlock.vue
Normal file
11
app/components/viewer/EmployeeInfoBlock.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user