Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
56 views

I am developing a project with Vue.js, so to manage sending email through the contact form instead of the backend, I am using Email.js. I followed steps as below: Add an email services Create an ...
Ana's user avatar
  • 117
0 votes
1 answer
175 views

I’m using the Nuxt UI <UNavigationMenu> component in my Nuxt 3 app to render a header nav that scrolls to sections via hash links within my pages/index.vue (#about, #products, #news, etc.). ...
BATMAN_2008's user avatar
  • 3,642
0 votes
1 answer
304 views

Im trying to implement a simple dialog, but the styles dont apply like it would do This is the component <template> <div class="card flex justify-center"> <...
Alvarado's user avatar
1 vote
1 answer
71 views

I've been trying to use Vue's Fallthrough Attributes to pass an event listener down to a button with v-bind="$attrs". After hours of debugging I found out that the event listener is ...
Welnyr's user avatar
  • 21
0 votes
1 answer
267 views

I’m building a Vue 3 project with Vite, and trying to integrate fabric.js (v6.7.0) to allow drawing on a PDF rendered using pdf.js. Here’s the problem: I installed fabric via: npm install fabric Then ...
Nwp _'s user avatar
  • 83
0 votes
0 answers
64 views

I have following code <script setup lang="ts"> // Imports... const btnProps = { color: 'primary', variant: 'outlined', ... } </script> To avoid TS complaints I have to ...
PyKKe's user avatar
  • 457
0 votes
1 answer
88 views

The goal is to have some sort of reusable directive, hook, utility, that would allow me to auto-focus on a component. I chose the approach of a custom directive. What I got: <!-- MyForm.vue --> &...
Welnyr's user avatar
  • 21
-1 votes
1 answer
53 views

My folders look like this: APP - 23-commerce-admin - 23-commerce-api I am getting this error when I try to build my client app (23-commerce-admin): ✘ [ERROR] Could not resolve "pg-hstore&...
Tomas Gonzalez's user avatar
0 votes
1 answer
53 views

The route I'm having trouble is the below one: { path: "/report/:reportid", component: ReportPage, name: "ReportPage", props: true, meta: { requiresAuth: true }} This page hooks a ...
RaZzLe's user avatar
  • 2,150
2 votes
1 answer
197 views

The wrapper component pattern is quite difficult implement in vue.js with Typescript. To begin with it's difficult to extract the typings for the props, the emits and the slots: especially with ...
darkbasic's user avatar
  • 401
0 votes
1 answer
74 views

I'm having trouble running unit tests with Jest in a Vue 3 + TypeScript project. When I run the test, I get the following error: npx jest --no-cache src/tests/Login.spec.ts FAIL src/tests/Login.spec....
ameur's user avatar
  • 21
1 vote
0 answers
50 views

I have an app using Vite 5 and Vue 3 with a permission system with a handful of different decentralized modules that use js symbols to define their actions and then get registered with a centralized ...
aron.duby's user avatar
  • 2,322
0 votes
0 answers
43 views

Up the learning curve with Vue. Found this progress bar by Josh Bivens ->Thanks. https://codepen.io/joshbivens/pen/mPRovV I got the code working and I use the progress to show processing of some ...
joseph son's user avatar
1 vote
1 answer
69 views

I am using ApexCharts 3 to produce a line chart. I managed to produce the following chart. It looks just fine to me except for the first label on x-axis: "1 May 2025". The label is bold. Is ...
Ong K.S's user avatar
  • 323
2 votes
1 answer
76 views

Background I'm trying to create reusable data table component with dynamic column formatting and typing in Vue 3. This table accepts data rows and column definitions, including components to display ...
John Doe's user avatar
  • 687
0 votes
0 answers
45 views

I’m working on a monolithic Laravel + Vue 3 app (using the Composition API), and I’m wondering what the best practices are to prevent JavaScript errors from completely crashing the frontend. Ideally, ...
Sanja's user avatar
  • 406
0 votes
1 answer
79 views

When I change body.title in v-text-field I see success requests in network tab and response with new data but there is no changed data on the page. otherwise, if I use const { data: _data }: any = ...
AxOn's user avatar
  • 101
-1 votes
2 answers
56 views

I have a moderately complex set of containers displayed conditionally: <div v-for="activity in allActivities" :key="activity.id"> <div v-if="something(activity)&...
WoJ's user avatar
  • 30.6k
0 votes
0 answers
52 views

I recently upgraded my project from Vue 2 to Vue 3, so i'm just importing Bootstrap instead of using Bootstrap-Vue. I want to test the accordion functionality using nuxt-test-utils and my test ...
user2953989's user avatar
  • 3,039
1 vote
2 answers
135 views

when user turns on his laptop, I am trying to check user's last activity time on mounted in vuejs3, i am using below code for it: document.addEventListener('visibilitychange', () => { if (...
kvell support's user avatar
0 votes
1 answer
59 views

I'm trying to replicate the filter section from the top part of this website: https://kimeracorp.eu/ It has a smooth animation when toggling filter options, and the content adjusts dynamically. I ...
Mansukh Khandhar's user avatar
0 votes
0 answers
130 views

I've tried to use the stepper component to create a stepper into my nuxt app. The stepper is correctly loaded, but there is an error in the console : expose() should be called only once per setup(). ...
jojubluch's user avatar
0 votes
0 answers
40 views

Is there a specification of the HTML a server has to produce so that Vue (3.x) can hydrate it? "Easy": get a Vue app server side rendered (we have successfully used Nuxt in production) &...
jonas's user avatar
  • 677
0 votes
0 answers
84 views

I have a use case to convert remote URL images to the webp format before they render in the Nuxt website. I simply did this <NuxtImg src="https://images.pexels.com/photos/1028930/pexels-photo-...
margherita pizza's user avatar
1 vote
2 answers
104 views

I am constructing a demo to illustrate the ways you can invoke dialogs in Vuetify3 so that I can learn these techniques myself. (I'm thinking of publishing this to GitHub if it all works out so that ...
Henry's user avatar
  • 1,837