I have a component and want to add a click listener that runs a method in the parent template in Vue. Is this possible?
You can either pass the parent method down to the child component via props or you can get the child component to emit either a custom or native event.
props
Here's a Plunker to demonstrate both approaches.