fileserver/frontend/src/AppAsyncWrapper.vue

13 lines
185 B
Vue
Raw Normal View History

2022-08-17 19:59:51 +00:00
<script setup lang="ts">
2022-08-30 19:26:35 +00:00
import App from './App';
2022-08-17 19:59:51 +00:00
</script>
<template>
2022-08-30 19:26:35 +00:00
<Suspense>
<App></App>
<template #fallback>
<div>Loading...</div>
</template>
</Suspense>
2022-08-17 19:59:51 +00:00
</template>