JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

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:{}
})