Skip to content

Instantly share code, notes, and snippets.

@joanfabregat
Created March 30, 2023 15:32
Show Gist options
  • Save joanfabregat/de1b44a4849f18cd16275f5e83f0b083 to your computer and use it in GitHub Desktop.
Save joanfabregat/de1b44a4849f18cd16275f5e83f0b083 to your computer and use it in GitHub Desktop.
Using suspense with router-view
<router-view v-slot="{ Component }">
<suspense timeout="0">
<template #default>
<component :is="Component" :key="$route.path"></component>
</template>
<template #fallback>
<div>Loading...</div>
</template>
</suspense>
</router-view>
<!-- source: https://codesandbox.io/s/q4nsd?file=/src/App.vue:132-414 -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment