mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
17 lines
283 B
Vue
17 lines
283 B
Vue
|
<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>
|