Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [vuejs3]

Use this tag for questions specific to version 3 of Vue.js, an open-source, progressive Javascript framework for building user interfaces.

vuejs3
0 votes
1 answer
30 views

Vue 3 and Vitest focus input sets document.activeElement to HTMLBodyElement in test in composition API

Given a Vue 3 component <template> <input id="input" type="text" @focus="handleOnFocus($event)" /> </template> <script setup type="ts">...
0 votes
1 answer
16 views

How to build a Vue web component which reflects an internal state as an attribute?

I am building a web component input which looks like this with Vue 3: <my-input value="Search"></my-input> How can I make sure that the value attribute is always equivalent to ...
2 votes
4 answers
4k views

Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '__asyncLoader') Vue 3

<template> <v-select v-model="selectedCustomerId" :items="customerOptions" item-text="name" item-value="id" label=&...
0 votes
0 answers
22 views

Resolve cors error for Nuxt 3, for embedded app making request in project

CORS ERROR I have an issue in my project, I understand the error, as well as I tried to find answer for it but no luck so far. Here is my scenario: I have nuxt 3 app, where I am embedding one of the ...
1 vote
1 answer
32 views

Passing object with reactive properties as a prop triggers child component onUpdated hook when updating parent component state

Consider a simple component Comp.vue file that only logs a message in the console when updated: // Comp.vue <script setup> import { onUpdated } from 'vue' onUpdated(() => { console....
0 votes
0 answers
15 views

Vue3 Typescript Sum all values of a column in an array

I'm still very new to this programming language and I'm trying to take an array column and sum its values so I can show a total amount on the webpage. Question #1 I was attempting to use a computed ...
0 votes
0 answers
5 views

Passing an object to a route with vue-router

Based on this from vue-routers site it seems as though you can pass an object as a prop. However, everytime I try to do this it seems to it fail saying invalid param My route is defined as follows: ...
0 votes
0 answers
19 views

element plus key How do I set the key for select v2 [closed]

How do I set the key for select v2 to prevent the entire visual list from being refreshed during virtual scrolling and reuse the dom using vue's diff algorithm <template> <el-select-v2 ...
0 votes
1 answer
40 views

Some Tailwind classes are not applied

I'm using Tailwind in a Vue3 project and I'm encountering weird behavior with some classes. For examle, I have this code : <li class="border-solid border-l border-red-500"> In VScode,...
0 votes
0 answers
11 views

Where to store a frontend-environment variable in Jhipster (Stripe publishable key)

Stripe accounts come with test and prod, publishable and secret keys. The application is generated by Jhipster. Regarding the publishable keys, I want to pass them as environment variables to use ...
0 votes
0 answers
10 views

Vuejs Page break problem in jsPdf when print receipt

I have 2 problems, my receipt is very long and when I export the pdf it has a page break, so I am keeping pdfHeight fixed. How can I make pdfHeight calculate the height automatically and not have a ...
1 vote
2 answers
65 views
+50

How to set loadingTemplate inside custom Nuxt Module

I'm building a nuxt module, and want to set loadingTemplate within this module. What I tried so far is modifying devServer inside module like below (But no luck) import { loadingTemplate } from './...
0 votes
1 answer
32 views

Transition Issue with Layout in Nuxt 3

I am facing an issue with route transitions when conditionally disabling layouts on specific pages. I have a <NuxtPage /> in app.vue wrapped in default <NuxtLayout />, which contains a ...
2 votes
2 answers
338 views

Vue's reactiv with classes

I want to wrap a class object in reactive, so i can trigger my methods which works on the attributes and the latest values of the attributes are displayed. For example on this Example Code: <script ...
0 votes
1 answer
28 views

"if regex.test" doesn't works properly on javascript vuejs router [duplicate]

const router = createRouter({ history: createWebHistory(), routes, }); // ... const allowedToAnonymous = [ /^\/login$/g, /^\/signup$/g, /^\/home$/g, /^\/emailconfirm\/[0-9a-zA-Z]{8}$/g, ...

15 30 50 per page
1
2 3 4 5
903