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

All Questions

Tagged with
0 votes
1 answer
29 views

Return component with props from composable

In a Vue project, I have a composable that provides few useful refs to components using it. In my application, it is very likely that whichever components use the composable, it will need to render ...
ALai's user avatar
  • 779
0 votes
0 answers
35 views

How to create a standalone embeddable script from an internal Vue component?

I have a Vue application, and within, I have a component, which I reuse throughout the app. It's located in src/components. I'd now like to make it so this component can be embedded into other ...
CentoKili53's user avatar
0 votes
0 answers
36 views

Links not longer working when navigating to another view

So, when I used this code to go from the view to another with props. this my first view : <template> <Spinner /> <Header /> <main class="main"> <...
JuniorDev's user avatar
0 votes
0 answers
31 views

TypeError: Right-hand side of 'instanceof' is not an object in Chartist.js with Vue.js

I'm trying to create a Pie chart using Chartist.js in my Vue.js project and integrate the chartist-plugin-fill-donut plugin. However, I'm encountering a TypeError: Right-hand side of 'instanceof' is ...
Kulwinder Singh's user avatar
0 votes
1 answer
23 views

Vue.js: Watch Nested Property Changes and Trigger Method in a Deeply Nested Component Structure

I'm working with a Vue.js application where I need to watch changes on a nested property (isChecked) in a deeply nested component structure. My goal is to trigger a method (sumOfChecked) whenever the ...
maher's user avatar
  • 35
0 votes
0 answers
26 views

Vue shows an image in one component, but in other component, gives 304 error and doesn't show the image

My Vue.js app has the public folder, with a folder for images, where I put the images for the app to use. In Home component I can show the image with: <img :src="'images/'+ product.image"&...
Developer's user avatar
  • 107
0 votes
1 answer
34 views

Binding Events and Functions to Dynamic Components in Vue 3

I have an array of form field like below and I wanna render dynamic form with event and function [...{ label: "Logo", field: "image", component: ...
Newbie Web's user avatar
1 vote
0 answers
19 views

Quasar qpopup edit async validation not working

I am facing issue with qpopupedit async validation I created a codepen. I think it is converting return boolean value to a string. can anyone check why it is not working ? I created a Codepen you can ...
Pash's user avatar
  • 388
0 votes
2 answers
28 views

Vue 3 upgrade props are passed but not show in the component

I have following Vue 3 component image-template-row-item which has the prop templates-types which is defined in the component in the props: now this prop is always passed as undefined to the ...
Muhammad Essam's user avatar
0 votes
0 answers
29 views

VeeValidate handeSubmit Not returned values

I work with vee-validate validation for vue. I choose handleSubmit method: <template> <div> <Form @submit="onSubmit" :validation-schema="schema"> <...
LarakBell's user avatar
  • 618
0 votes
2 answers
37 views

Re-render a OpenWeatherMap component when switching language in Vue 3

I am a beginner using Vue 3, to learn it I am developing a simple weather webapp using OpenWeatherMap API. I have added multilanguage support using vue-i18n library and everything works fine. But ...
feub's user avatar
  • 547
1 vote
1 answer
96 views

two-way binding of a checkbox does not happen

For the code posted below vue component it is a child component and is hosted in a specific parent. When I make two ways binding via vModelCheckGeoTIFFOverlayBandAverages by introducing a change to ...
Amr's user avatar
  • 27
0 votes
1 answer
57 views

vue 3 composition api, can not return value from a helper function to component

i think this is a problem of scope inside my helper function, i have successfully implementing the same logic in my component and it works perfectly i have already using a composable function to use ...
Ayoub Groubi's user avatar
0 votes
0 answers
42 views

Vue child component not mounting during rendering

const componentData = { "label": "body", "category": "default", "children": [{ "label": "Droppable Component&...
Muhammad Zeerak's user avatar
1 vote
1 answer
53 views

how to change v-calendar default color using vue.js 3

<template> <v-row> <v-col> <v-sheet> <v-calendar class="custom"></v-calendar> </v-sheet> </v-col> </v-row&...
Pongsatorn Tassaro's user avatar

15 30 50 per page
1
2 3 4 5
640