[Vuejs]-How to write a button component in VueJS 2.0

0👍

Why can’t you? https://v2.vuejs.org/v2/api/#Instance-Methods-Events

methods: {
    handler($e, param) {
       $this.$emit('buttonClicked', $e, param);
    }
}

and in the listener

<component @buttonClicked="handleClick">

Leave a comment