Sep 3, 2018 · 1 min read
While it may seem like “effectively” two-way binding, it’s important to note that this is merely syntactic sugar for the exact same as the React version! You could replace v-model=”todo” with something along the lines of v-bind:value="todo" v-on:input="todo => { this.todo = todo }" and achieve the exact same result (because this is literally what happens under the hood).
