fileserver/frontend/src/AppAsyncWrapper.vue

13 lines
200 B
Vue
Raw Normal View History

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