this is my HTML from Component1
<component2></component2>
this is my <script> from Component1
export default {
methods: {
fetchData()
{
...
}
}
}
and i wanna call the method fetchData() in Component2
my <script> from component2
export default {
...
}
i tried: this.$root.$refs.c1= this; ... this.$root.$refs.c1.fetchData()
i tried to set an event
nothing worked