Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
via ref :
<button @click="$refs.child.someMethod()">call child method</button>
<child-component ref="child"></child-component>
https://ru.vuejs.org/v2/guide/components-custom-ev...
Through $emit
in the parent
in the methods: nameEvent(){
}
in the child
where you need to call the event (some function)
this.$ emit('someEvent');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question