JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<div id="vue">
{{random()}}<br>
{{'Hello' | filter}}<br>
{{counter}}
<button @click="counter++">+</button>
</div>

JavaScript

new Vue({
	el:'#vue',
  data:{
  	counter:0
  },
  methods:{
  	random:Math.random
  },
  filters:{
  	filter:Math.random
  }
})