Skip to main content

All Questions

1 vote
0 answers
1k views

Nuxt 3 DOM bindings not updating with ref value update

Please see minimum viable reproducible repo here. To reproduce the error, please load this page in a browser with a viewport wider than 767 pixels. The issue I'm having an issue with the :class ...
Ash Menon's user avatar
  • 385
1 vote
0 answers
1k views

Nuxt 3 runtimeConfig returns undefined

I am using runtimeConfig on a page but it is undefined In nuxt.config.ts runtimeConfig: { public: { apiUrl: process.env.API_URL, local: { client_id: 'id goes here', ...
Phillis Peters's user avatar
1 vote
1 answer
35 views

is it advisable to use the same template ref value in dynamically loaded component?

//parent.vue <component ref="stepForm" :key="currentTabComponent.id" :is="currentTabComponent.value" @success="handleSuccess" >...
gitam gadtaula's user avatar
0 votes
1 answer
1k views

Get template ref in Vue Composable Function

I need to get a template ref in a Vue Composable Function in a Nuxt project. My template is: // /components/Component.vue <template> <div ref="element"> ... </div> ...
giannicash's user avatar
0 votes
0 answers
322 views

Can't set element's scrollLeft properties in VueJS

I'm actually coding an infinite slider in vuejs (using Nuxt 3 RC.10) and I'm facing a problem : my scrollLeft don't want to be reset. Let me explain. I got two rows of images, and when the left side ...
Jocabin's user avatar
  • 13
0 votes
0 answers
2k views

Html not loading properly, nuxt 3 onMounted

I am having trouble with an implementation of Nuxt 3 and Threejs. <template> <div> <canvas ref="webgl" class="canvas"></canvas> </div> </...
Mattia Peiretti's user avatar