mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
16 lines
265 B
Vue
16 lines
265 B
Vue
|
<template>
|
||
|
<div class="px-6">
|
||
|
<h4>Samples</h4>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { defineComponent, ref } from 'vue';
|
||
|
import { useRouter } from 'vue-router';
|
||
|
export default defineComponent({
|
||
|
name: "Samples",
|
||
|
setup() {
|
||
|
return {};
|
||
|
},
|
||
|
});
|
||
|
</script>
|