vue · Vue.js Basics
V-model directive is used in ...
Answers
- two-way data binding where the view(UI) part of application automatically updates when data Model is changed.
- two-way data binding where the view(UI) part of application does not update automatically. We need to write some custom code to make it updated every time a data model is changed.
- one-way data binding where the view(UI) part of application automatically updates when data Model is changed.
- one-way data binding where the view(UI) part of application does not updates automatically. Some custom code should be written for making it updated every time a data model is modified.
Hello, {{ name }}!