mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
16 lines
407 B
Vue
16 lines
407 B
Vue
<script setup lang="ts">
|
|
import { defineAsyncComponent } from "vue";
|
|
const PageHeading = defineAsyncComponent(
|
|
() => import("@/components/common/FelPageHeading.vue")
|
|
)
|
|
const tabSamples = defineAsyncComponent(
|
|
() => import("@/components/sample/FelSampleListing.vue")
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<page-heading title="Samples" />
|
|
<tab-samples />
|
|
</template>
|
|
|
|
<style lang="postcss"></style>
|