-
-
Notifications
You must be signed in to change notification settings - Fork 346
Closed
Labels
Description
This is excellent code.
I plan on using this in the future and I am hoping to not have to simplify the use.
Before I start, I wanted to make sure that it really isn't there or that I am not understanding a technical limitation or philosophy of Vue. In the todo example https://jsfiddle.net/posva/wtyop5jy/ it would be nice if instead of
<input :value="todo.text" @input="updateTodoText(todo, $event.target.value)">
we could do <input v-model="todo.text" ">
and the changes would be persisted back to the Firebase database. Is this impossible or just difficult?
Thank you,
Bentley