[Vuejs]-How to share data variables between child components

0👍

Like answered before you should be able to share data with a propperty and event/emit combination. As a sugar syntax you could use v-model or sync

Another way is to use vuex as a state for the data you could use a getter to obtain data in different components and use setters (commit) to set data to the store

Leave a comment