[Vuejs]-Change variable in component using vue.js

0👍

To pass the message variable from your index.vue through navbar.vue to title.vue each needs to pass the property to the child and each child must pass the property on again all throughout the tree.

Something like this should work for your case: <title :msg="msg"></title>

Leave a comment