[Vuejs]-Transfer data from Vuejs component to another div

0👍

You can pass values between components as a property check the documentation.

N.B:

There is only one-way-down binding, i.e:

All props form a one-way-down binding between the child property and the parent one: when the parent property updates, it will flow down to the child, but not the other way around.

Leave a comment