Questions tagged [v-model]

Use this tag for questions related to the v-model directive of Vue.js.

The v-model directive is used to create two-way data bindings on form input, textarea, and select elements. It automatically picks the correct way to update the element based on the input type. Although a bit magical, v-model is essentially syntax sugar for updating data on user input events. For more information: https://vuejs.org/v2/guide/forms.html#Modifiers

420 questions
0
votes
1 answer

Vuetify v-select - set default values for multi select

I'm trying to set the defaults values of the v-select component. At the moment it only appears to be setting it to the first value. Within our app we allow the user to select options which are pulled from an API. The issue we faced is using the…
0
votes
1 answer

cannot retrieve radio button view 3 value

I created a radio button component on which emits an event but my v-model remains empty I do not see where the problem comes from I am no error in the console import components RadioButton DATA gender: '';
0
votes
1 answer

Vue.js post dynamic v-for value to database (Firebase)

facing major issues in processing a dynamic value from a v-for loop into my database. In my Vue app, I am displaying questions in a v-for loop and the users can answer to each question through a form. Additionally to the user input, I want to pass…
0
votes
1 answer

VueJS get v-model value to methods

excuse me, i use vuetify for carousel component and i want set duration carousel per slide template : First Item Second…
0
votes
0 answers

Is there a way in Vuetify to pass a callback function to a v-autocomplete component that is called when the associated v-menu changes visibility?

I am trying to bind some data property (isMenuActive) in the outer scope of a v-autocomplete component to the visibility state of its implicitly created v-menu, independently of what triggers de opening or closing of this menu. So there is no need…
Jerry
  • 23
  • 5
0
votes
2 answers

How do I access values of dynamic textboxes in vue.js

I'm generating this vue template dynamically based on previously selected options, So depending on the number of check boxes a user selects from a previous step, I generate this template.