All Questions
6 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 ...
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',
...
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"
>...
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>
...
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 ...
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>
</...