in my app written with VueJs 2, I have into the Vue.app this code:
export default {
name: 'app',
data () {
return {
title: 'Gestione fornitori',
idfornitore: ''
}
},
methods: {
loadFunction (route) {
this.$router.push(route)
}
}
}
</script>
I wish to access the property idfornitore
from another component, I've used:
mounted () {
this.$parent.idfornitore = ''
},
or also:
mounted () {
var Vue = require('vue')
Vue.app.idfornitore = ''
},
But it didn't worked. Which is the correct way to access the property from another component?
Thank you in advance.
Use props to communicate data from parent to child.
Emit events to communicate from child to parent
Parent.vue
Child.vue
Communication between components are done via
props
orevents
.If the component data you wish to access has child relationship, you could use
props
. But in your case, you need to change parent data. For this purpose, you could emitevents
. Events would be clean solution, if the component (you wish to update) is the direct parent of your current component.If not so, use EventBus pattern. Using this pattern you could emit events from any component and listen to them in any other component and apply changes accordingly.
https://vuejs.org/v2/guide/components.html#Non-Parent-Child-Communication https://alligator.io/vuejs/global-event-bus/
EventBus patterns will produce really dirty codes and makes debugging really difficult if communication between components is needed more often.
To handle shared state between multiple components, it is highly recommended to use
vuex
. It makes your application state easily manageable and easy to maintain. I believe every real world Vue application needs state management and this could be easily achieved byvuex
(or other similar tools) and I suggest you to do so.https://vuejs.org/v2/guide/state-management.html
https://vuex.vuejs.org/en/intro.html