[Vuejs]-How to use a member variable in multiple vue.js apps?

0👍

You should take a look at VueJS Components. You’re trying to pass data between multiple Vue instances so that couldn’t work.

Make a component for your "change" div and another one for your "canvas". After that, you have to instanciate one Vue to a global div. Then, you will be able to pass data between your 2 components.

Leave a comment