0 votes
in Vue.JS by (883 points)

what is the the differences between one-way data flow and two-way data binding?

1 Answer

0 votes
by (883 points)

In one-way data flow the view(UI) part of application does not updates automatically when data Model is change we need to write some custom code to make it updated every time a data model is changed. In Vue js v-bind is used for one-way data flow or binding.

In two-way data binding the view(UI) part of application automatically updates when data Model is changed. In Vue.js v-model directive is used for two way data binding.

Click here to read more about Vue JS
Click here to read more about Insurance

Related questions

0 votes
asked Oct 9, 2019 in Vue.JS by Indian (793 points)
0 votes
asked Oct 7, 2019 in Vue.JS by Tate (883 points)
...