JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<div id="vue">
<button :onClick="foo">
Foo
</button>
{{msg}}
</div>

Vue

new Vue({
	el:'#vue',
  data(){
  	return {
    	msg:''
    }
  },
  methods:{
  	foo(){
    	this.msg = 'woot'
    }
  }
})