JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
<test @foo="alert('foo')" @bar-bar="alert('bar-bar')"></test>
</div>
Vue
Vue.component('test', {
template:`<div></div>`,
created(){
this.$emit('foo')
this.$emit('bar-bar')
}
})
new Vue({
el:'#vue',
methods:{}
})