[Vuejs]-Ways to compose input components in Vue.js

0👍

click.native will listen on a component for a native event to bubble up from an element contained in the component. In your case, it would be

<currency-input @click.native="clickMe"></currency-input>

Leave a comment