mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
10 lines
209 B
Vue
10 lines
209 B
Vue
<script setup lang="ts">
|
|
import { defineAsyncComponent } from "vue";
|
|
const Inventory = defineAsyncComponent(
|
|
() => import("./Inventory")
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<Inventory />
|
|
</template>
|