felicity-lims/webapp/views/admin/inventory/InventoryAdmin.vue

12 lines
209 B
Vue
Raw Normal View History

2023-11-10 14:05:15 +08:00
<script setup lang="ts">
import { defineAsyncComponent } from "vue";
const Inventory = defineAsyncComponent(
() => import('./Inventory')
)
</script>
<template>
<Inventory />
</template>