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