All Questions
107,998 questions
-2
votes
0
answers
22
views
Why does IntelliJ IDEA mark `.router-link-active` as unused in Nuxt project but not in pure Vue project?
I'm encountering a difference in IntelliJ IDEA's behavior between pure Vue and Nuxt projects regarding the CSS class .router-link-active.
In a pure Vue project using <RouterLink>, IDEA correctly ...
0
votes
0
answers
35
views
When using the DynamicScroller of vue-virtual-list, there is unexpected gap between sub-list items
Screenshot of actual effect:
The abnormal blank space is circled in red。The template and CSS code are as follows:
<DynamicScroller
:items="msg_list"
:min-item-size=&...
-5
votes
0
answers
41
views
How should I migrate a Vue 2 + Vuetify 2 legacy project to Vue 3 + Vuetify 3 without redesigning everything? [closed]
I’m upgrading a legacy Vue 2 + Vuetify 2 application to Vue 3 + Vuetify 3. The migration is causing many design and component changes, so I keep needing custom classes and manual fixes just to ...
0
votes
2
answers
42
views
Debounce not working properly in Vue 3 input field
Debounce not working properly in Vue 3 input field
watch(searchQuery, (newVal) => {
debounceFetch(newVal)
})
function debounceFetch(val) {
setTimeout(() => {
fetchData(val)
}, 500)
}
0
votes
0
answers
43
views
@google/genai SDK: ai.files.upload ignores abortSignal and doesn't throw any exception when I try to abort
I am using the official @google/genai SDK in a Vue.js application. I am trying to implement a cancellation mechanism for file uploads using an AbortController.
However, when I trigger .abort(), the ai....
0
votes
1
answer
97
views
@google/genai SDK: Does chat.sendMessage config override the ai.chats.create config?
I am using the official @google/genai SDK in a Vue.js application. My goal is to establish a persistent systemInstruction for a chat session, while retaining the ability to cancel individual requests ...
-1
votes
0
answers
53
views
Enumeration warning when using VS Code debug console in a Vue project
I have a minimal Vue 3 application created using npm create vue@latest. The application contains a simple App.vue file with the following contents:
<script>
export default {
data: function(...
2
votes
1
answer
126
views
How to create and implement templates that allow for information to be automatically filled in on envelope creation using Docusign API
Problem
I’m using the DocuSign eSignature API with composite templates and can’t get prefill (sender-filled) text tabs to populate when creating an envelope.
What I’m Doing
I built a template ...
Tooling
1
vote
1
replies
83
views
How to create button hover animations in Nuxt 4 using GSAP like on https://www.museumofmoney.com/?
I’m working on a project using Nuxt 4 and I want to create button hover animations similar to the ones on Museum of Money.
My questions are:
How can I structure GSAP animations in Nuxt 4 for buttons ...
3
votes
0
answers
74
views
Vite shared option 'define' seems to not work as documented on build mode
I have successfully migrated my small app from Vue 2 + Vue-cli to Vue 3 and Vite (8.0.1). There is just one small annoyance I cannot get around. It is related to the Vite shared option 'define'. It ...
-1
votes
0
answers
48
views
Vue doesn't load styles in root
My /index.html simply tries to load fontawesome located in /public/fonts/<url>
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
&...
0
votes
0
answers
60
views
Vue 3 component's v-html doesn't update after hydration
I am experiencing a strange hydration behaviour in Vue 3 (Nuxt/SSR context). In my component, I have a reactive variable that initialises with a timestamp.
On the initial client-side render, the ...
0
votes
0
answers
56
views
Buefy 3.0.4 and nuxt 4 gives me Cannot read properties of undefined (reading '$buefy')
After trying the nuxt-buefy plugin with no successful outcome I tried adding buefy to nuxt using the plugin option. This gives me an server 500 error declaring
'Cannot read properties of undefined (...
1
vote
1
answer
78
views
How to make cookies work with axios and vue3-cookies?
I have successfully created a session-based, httpOnly-cookie stored authentification process between my Vue3 frontend and Spring Boot backend. Now, since the authentification cookie is httpOnly, I ...
3
votes
1
answer
56
views
Nuxt useFetch does not refetch on URL parameter change
Given this Nuxt example code of the app root component using the Nuxt UI calendar component to handle the current selected day
<script setup lang="ts">
import { today, getLocalTimeZone ...