Skip to main content

All Questions

Tagged with
0 votes
2 answers
127 views

How to organise sending data with script setup vue 3? With probably composables touch

I’m havin a parent component, let’s say “1”, it has 2 child components, “2” and “3”, each one of this components has one child component, “4” for “2” and “5” for “3”. So the question is how to pass ...
Ron's user avatar
  • 3
0 votes
1 answer
329 views

VUE emit from child to parent v-model

child template: ` <li v-for="option in listaOptiuni" :key="option.id"> <input @change="updateSelectAllToateOptiunile(); sendListaToateOptiunile()" v-...
kevsterdev's user avatar
0 votes
1 answer
601 views

Passing data to an ancestor component vue3

I have a multi-step form in Vue3 that has the following structure: <Formroot /> ... <formPage2 /> ... <postcodeWidget /> I have a data structure in my formRoot ...
tanbog's user avatar
  • 600
2 votes
1 answer
958 views

how to $emit in vuejs

VueJS emit doesn't work, I'm trying to change the value of a boolean, but it doesn't want to emit the change here is the first component: <template> <div id="reg"> &...
Abdou's user avatar
  • 35
0 votes
0 answers
91 views

Event does not reach the parent component from the child

I send an event to the parent component. When you click the list element, the toggle is handled with the v-model directive. Besides, I need the information on whether the list element is selected to ...
Mehmet Eyüpoğlu's user avatar
1 vote
1 answer
1k views

VueJS select object from list and display with function

I need to get the element I click which is displayed in a list. And print this element on a method which is on my vue instance throug mail-list tag which is on index.html So I have Vue component ...
Victor's user avatar
  • 31
1 vote
1 answer
503 views

Vue props with @emit

I am not using a prop with @emit in the correct way but I don't know how to fix it. I need to know a non-global registration way of doing this correctly (I am completely new to Vue by the way).. Here ...
Nathan Bell's user avatar