JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
<button :onClick="foo">
Foo
</button>
{{msg}}
</div>
Vue
new Vue({
el:'#vue',
data(){
return {
msg:''
}
},
methods:{
foo(){
this.msg = 'woot'
}
}
})