felicity-lims/webapp/components/common/FelPageHeading.vue

11 lines
176 B
Vue
Raw Normal View History

2023-11-10 14:05:15 +08:00
<script setup lang="ts">
defineProps(["title"])
</script>
<template>
<h1 class="text-xl font-extrabold uppercase">{{ title }}</h1>
<hr class="mb-4">
</template>