The main reason for staying with Vue 1.x is the sync option for two way bindings. Looks like Vue 2.x allows for the v-model directive that automatically binds to the prop value. Then you emit an input event with the new value and it will update the parents value.
The main reason for staying with Vue 1.x is the
syncoption for two way bindings. Looks like Vue 2.x allows for thev-modeldirective that automatically binds to the propvalue. Then you emit aninputevent with the new value and it will update the parents value.