Vue
Introduction to Vue.js: Directives

V-Model

PRO
Outline

The next directive we will look at is v-model. This directive will be used quite frequently in your vue application, as it is essential to create two way data bidings on form imputs.

V-model is syntax sugar for event listeners, and knows how to handle the data bindings per input type.

To view the demo used in this video, check out the codesandbox found here: https://codesandbox.io/s/vue-forms-4611i

 

I finished! On to the next chapter