Last active
May 22, 2024 17:48
-
-
Save ffxsam/b7f415969c9529279ec35e95e5ffd7af to your computer and use it in GitHub Desktop.
Vue 3's Suspense component, ready for use in Vue 2.x (TypeScript)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue'; | |
export const Suspense = Vue.extend({ | |
name: 'Suspense', | |
data: () => ({ | |
resolved: false, | |
}), | |
async created() { | |
const setupMethod = (this.$parent as any).setup; | |
if (!setupMethod) { | |
throw new Error( | |
'[Suspense] No setup method found - make sure Suspense is at root ' + | |
'level, just inside <template>' | |
); | |
} | |
await setupMethod(); | |
this.resolved = true; | |
}, | |
render(createElement) { | |
return createElement( | |
'div', | |
this.resolved ? this.$slots.default : this.$slots.fallback | |
); | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can't really offer any guidance in getting this to work in Nuxt. If you follow the instructions above (and declare a
setup()
method), it should work ok in a standard Vue 2 application.