[Vuejs]-How to fetch initial data in Vue 3 with async await before rendering?

1👍

I never had problems writing async in onMounted() hook in Vue 3 like this:

onMounted(async () => {
   await prefetch()
});

Leave a comment