[Vuejs]-Vue 2 Vuex – update values via form or add new item

4👍

If i understand your question, the problem is that when you type something in the input, it doesn’t update the model.

The problem is you’re using :value to bind the values and this is a one-way binding. For 2 way binding replace all :value with v-model: v-model="book.title"

👤Tomer

Leave a comment