fileserver/frontend/src/AppAsyncWrapper.vue

13 lines
196 B
Vue
Raw Normal View History

2022-08-17 19:59:51 +00:00
<script setup lang="ts">
2022-08-28 15:37:09 +00:00
import App from "./App";
2022-08-17 19:59:51 +00:00
</script>
<template>
2022-08-28 15:37:09 +00:00
<Suspense>
<App></App>
<template #fallback>
<div>Loading...</div>
</template>
</Suspense>
2022-08-17 19:59:51 +00:00
</template>