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