Chame uma função de outro componente vue
....
mounted() {
this.$root.$on('component1', () => {
// your code goes here
this.c1method()
}
}
Zalven