felicity-lims/webapp/views/dashboard/Tat.vue

17 lines
283 B
Vue
Raw Normal View History

2023-11-10 14:05:15 +08:00
<template>
<h1 class="text-xl text-gray-700 font-semibold">Turn Aroud Time Measures</h1>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: "tab-tat",
setup() {
return {
};
},
});
</script>