All Questions
3 questions
1
vote
0
answers
75
views
How to stop executing rest of code in script setup syntax in composition api Vue 3
I have a page template that contains the following sub-component:
<template>
<ManageVacanciesAndMatchesTabVacancies @loading-data="setIsTabDataLoading" />
</template>
And ...
0
votes
1
answer
498
views
How to load a dynamic image from a url in Nuxt3?
I have a nuxt 3 component which fails to load dynamic image that i'm getting from a specific URL(auth0 images).
My template looks like so:
<template>
<img class="h-28 w-28 rounded-...
0
votes
1
answer
1k
views
Migrate Contentful asyncData to Nuxt 3 script setup format
I'm pretty new to using vue composition API and still not sure on how to migrate things over from options API.
I'm using nuxt and contentful and have pulled the below from contentful's docs but need ...