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

We have a Nuxt 3 based website. We were able to run the website in dev mode, build as well as preview it. Recently after a clean installation of the project with dependencies it is able to run on dev ...
Dhaval Chheda's user avatar
0 votes
0 answers
131 views

Problem: I cannot access my DB when I run the vercel project locally. I am using Vite with Vue3 and NeonDB set up through vercel. Everything works fine when deployed. But I would like to run it ...
vendelle's user avatar
0 votes
1 answer
189 views

I'm starting to get comfortable with Vue's composition API, but every time I make a composable I ask myself which pattern to use. If I have a composable whose state depends on outside triggers: ...
Christian's user avatar
  • 841
0 votes
0 answers
387 views

Using PrimeVue Form, and am running into issues with v-model: <Form v-slot="$form" :initialValues :resolver @submit="saveShift"> <div>{{ console.log('Slot ...
Robert Benedetto's user avatar
2 votes
1 answer
228 views

I am trying to use both Vue Router and Vuetify in Vue SFC Playground. I began with the Vue Playground example of Vue Router (taken from Getting Started). This had Vue Router already imported, so I ...
TripleCamera's user avatar
0 votes
1 answer
84 views

I have an issue where the image skeleton loader keeps loading infinitely when using the @load event in Quasar. const imgLoaded = ref({}); // template <q-skeleton v-if="!imgLoaded[img?....
Michael's user avatar
  • 563
0 votes
1 answer
54 views

I have a basic question related to argument of a function. when emitting an event from a child to a parent or when triggering a click event, I've seen in somme cases the add of $event as a parameter ...
ftouh yaham's user avatar
1 vote
0 answers
187 views

I'm implementing an accessible profile menu in Vue 3 using v-menu with role="dialog". When the menu opens, I'm setting focus on a specific element, but the screen reader (like NVDA) is ...
user20042604's user avatar
0 votes
0 answers
86 views

I’m using Pinia in a Vue 3 + Quasar project, and I want to enable Hot Module Replacement globally, so I don’t have to add if (import.meta.hot) in every store file. Is it possible to do so, maybe ...
Michael's user avatar
  • 563
1 vote
0 answers
22 views

I want to generate an component for dropdown display. I wanted to use slot for display the content at the higher level. I implemented a following structure. I can display component and manage events. ...
Deniz Yalçın's user avatar
0 votes
1 answer
90 views

in my walk-trough in the "Vue File-pond plugin" I try to send a picture to a PHP Symfony API, but I can't get an access to the file or "console.log" it Can you guys please tell ...
LeShino's user avatar
  • 46
0 votes
1 answer
108 views

I am trying to integrate Google Pay as a component in an application. I need to load the Google Pay Javascript file before I perform any actions. This is what I am doing: onMounted(()=>{ const ...
volume one's user avatar
  • 7,613
0 votes
1 answer
124 views

I would like to build a web component using Vuetify3 inside of a Vue3's component that is using composition API. How do I add Vuetify3 to MyNavbar.ce.vue component so that it is scoped inside the ...
Oleg's user avatar
  • 1
1 vote
0 answers
60 views

Description: I'm using Nuxt 3 with useHead() to set dynamic meta tags based on locale. The meta tags appear correctly in the Elements tab (DevTools) but are missing in "View Page Source". ...
Sheharzad Salahuddin's user avatar
0 votes
0 answers
133 views

In nuxt 3 you have two alternative ways to provide something globally // using nuxtApp instance useNuxtApp().provide('key', 'value') console.log(nuxtApp.$key) // value // using vueApp instance ...
Romalex's user avatar
  • 1,848
2 votes
0 answers
88 views

In my project, I've implemented a structure for managing errors and web API requests. I want any response with a 401 status code to redirect to a particular page. I've written all this code in a ...
mohsen ahmadi's user avatar
0 votes
1 answer
60 views

I'm having this issue where I'm using Vue3 and Nuxt, and I need a loading function to run once everytime the user navigates to the page, but delay loading if the global data isn't available yet. const ...
Jamie Marshall's user avatar
0 votes
0 answers
36 views

I've got problem to handle simple array of string validation. I wanted to check if they're a valid yt or vimeo links. My rules looks like that: const mediaUrls = ref<string[]>(['']) const rules ...
RobDee's user avatar
  • 126
2 votes
0 answers
58 views

When using vue-datepicker with multi-calendars and arrow-navigation props enabled, the keyboard arrow navigation is not functioning properly. Specifically, arrow key navigation works correctly on the ...
Harmeet Singh's user avatar
1 vote
1 answer
64 views

I am using Vue3. I have a button that get the Id of user once click. The problem is that if I place an svg icon within the button it causes the vue not to pick up the values of the data-id.. I.e the ...
paul kendal23's user avatar
0 votes
0 answers
44 views

<template> <div class="container mt-5"> <div class="row"> <div class="col-md-4 mb-4" v-for="subject in subjects.subject&...
Kishan Bisht's user avatar
0 votes
1 answer
98 views

I am using Quasar framework for Vue.js and I have a form (q-form) in a Dialog (q-dialog) component. The dialog is persistent (persistent=True), but I want the persistency to be true only if the user ...
Michal Osusky's user avatar
0 votes
0 answers
53 views

Using Nuxt 3, I'm switching from my "login" layout to my "admin" layout. This works great except for one thing: When switching layouts, there are few milliseconds where the "...
yhu420's user avatar
  • 637
1 vote
0 answers
50 views

I have Vue Dev Tools installed. I was going through this video https://vueschool.io/lessons/using-vue-dev-tools-with-vuejs-3 Around 3.40m into the video, the author uses a code in the console to check ...
joseph son's user avatar
0 votes
1 answer
108 views

I'm trying to use a decorator pattern for convenience in Vue. Here is my babel.config.cjs: module.exports = { presets: ["@babel/preset-env"], plugins: [ ["@babel/plugin-...
Maifee Ul Asad's user avatar

1
3 4
5
6 7
274