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>
- [Vuejs]-Nuxt Content: How to link to binary files from markdown/yaml?
- [Vuejs]-How can I change the width of b-form-select
Source:stackexchange.com