mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
11 lines
No EOL
176 B
Vue
11 lines
No EOL
176 B
Vue
<script setup lang="ts">
|
|
defineProps(["title"])
|
|
</script>
|
|
|
|
<template>
|
|
<h1 class="text-xl font-extrabold uppercase">{{ title }}</h1>
|
|
<hr class="mb-4">
|
|
</template>
|
|
|
|
|
|
|