mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
22 lines
525 B
Vue
22 lines
525 B
Vue
<script setup lang="ts">
|
|
const props = defineProps({
|
|
board: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bg-white shadow rounded-sm px-3 pt-3 pb-5 border border-white">
|
|
<div class="">
|
|
<h3 class="h2 font-bold text-gray-600">{{ board?.title?.toUpperCase() }}</h3>
|
|
<hr class="my-2">
|
|
<p class="text-gray-400 font-semibold font-sans tracking-wide text-sm">{{ board?.description || '---' }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
|
|
|