soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
303 Bytes
<script>
import AsyncSetup from './AsyncSetup.vue'
export default {
components: {
AsyncSetup,
Loading: {
render: () => 'Loading...',
},
},
}
</script>
<template>
<Suspense>
<template #fallback>
<Loading />
</template>
<AsyncSetup />
</Suspense>
</template>