Here is the HTML snippet from Component1
<component2></component2>
This is the <script>
block from Component1
export default {
methods: {
fetchData()
{
...
}
}
}
Now, I want to call the method fetchData()
in Component2
Here is the <script>
block from component2
export default {
...
}
I have tried using: this.$root.$refs.c1= this;
... this.$root.$refs.c1.fetchData()
I also attempted to set up an event, but unfortunately, nothing seemed to work as expected.