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

Questions tagged [vue.js]

Vue.js is an open-source, progressive JavaScript framework for building user interfaces that aims to be incrementally adoptable. Vue.js is mainly used for front-end development and requires an intermediate level of HTML and CSS. Vue.js questions are highly version specific and should always be tagged with [vuejs2] or [vuejs3] in addition to this tag.

0 votes
0 answers
6 views

How to set opengraph meta tags in laravel

I tried to set opengraph meta tags in my laravel inertiajs web app. When I shared the url to whatsapp, the cover image did not show up.. I already set some opengraph meta tags in inertia Head ...
sdn bedali01's user avatar
0 votes
0 answers
9 views

On certain machines, Vue client receiving response all at once instead of as a stream from Java Spring Boot server

I am trying to stream a response from a java server. The response is sent to a Vue client. When the server and client are running on my local Windows machine, it works beautifully. However, when the ...
Philip's user avatar
  • 670
0 votes
1 answer
12 views

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

const router = createRouter({ history: createWebHistory(), routes, }); // ... const allowedToAnonymous = [ /^\/login$/g, /^\/signup$/g, /^\/home$/g, /^\/emailconfirm\/[0-9a-zA-Z]{8}$/g, ...
Jeong Hansol's user avatar
0 votes
0 answers
9 views

express-session does not persist session by cross site request

My client/server architecture: Client (Frontend): Vue (Vite) Server (Backend): Express.js Currently i use only the http, because it's a develop enviornment. For safe request purpose handling, i use ...
rammi22's user avatar
  • 395
0 votes
1 answer
18 views

How to make click event on v-list-item occur after v-model on v-list updates

I have a v-list which contains a list of emails as shown: <v-list :disabled="selectedEmailLoading" v-model:opened="open" v-model:selected="selectedEmails" select-...
Qiuzman's user avatar
  • 1,469
0 votes
0 answers
21 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 ...
Michael's user avatar
  • 317
1 vote
1 answer
19 views

Vue.js checkbox component is not rendered if enable id by script

I have a Vue.js component called IstTable, that consists of a table made of column and rows. All rows have the first column corresponding to a checkbox, which is a component taken by IstCheckbox. I ...
Giacomo Brunetta's user avatar
0 votes
0 answers
13 views

Primevue centralized lazy components loading

I am integrating Primevue in my vue project. As far as I see in documentation, I need to import components in each vue I use them. I wonder whether there is a way to have single import statement (...
guyaloni's user avatar
  • 5,524
0 votes
0 answers
22 views

TailwindCSS with Nuxt 3 application: how do I use custom class in the Nuxt 3 component with @apply?

Sometimes I get the error when using the custom TailwindCSS class with @apply in my Nuxt 3 component <styles>. The issue is during the build npm run generate or npm run build but most of the ...
BATMAN_2008's user avatar
  • 3,310
0 votes
0 answers
25 views

Displaying real time graph with smooth animation

I have a need to display real-time data from an ICU monitor via MQTT. Data is sent from the tool every 1 second in the form of an array of around 250 elements. Demo video My goal is to display a graph ...
oji's user avatar
  • 1
1 vote
0 answers
16 views

how to override the ButtonHTMLAttributes.type enums?

I'm developing a cross-platform app via uni-app (this is a solution to build a cross-platform app by Vue) the type attribute of button has been changed in uni-app which the value can only be in "...
Ginger's user avatar
  • 2,812
-1 votes
0 answers
8 views

How to find the vuestic admin's sidebar icons?

i expect who can teach i use this icon,or teach me how to find the icons, i really can't do that And i control+shift+f search and see this ,don't find where are the icons from enter image description ...
stitch wei's user avatar
0 votes
1 answer
42 views

How to show data in Vue JS without click paging

I have an issue when I want to show data in VueJS. Previously I have successfully displayed "User Online" data, but the problem is why do I have to click on the page if I want to display the ...
veby91's user avatar
  • 63
1 vote
0 answers
14 views

Prevent webpack to add delay mechanism to an inlined script

I'm new with webpack and I don't understand at all why my webpack configuration is adding a delay mechanism at the end of the builded script, something like this: var t = o.O(void 0, [4998], (() ...
Nelson Saloj's user avatar
0 votes
1 answer
20 views

Vuelidate: Validate object with dynamic keys

I have a Vue form that contains a variable-length record with a language code as key and an object with a repeating structure as value. const form = reactive({ record: { en: {foo: 'bar' }, ...
Eddi's user avatar
  • 812

15 30 50 per page
1
2 3 4 5
7208