JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<div id="app">

</div>

Vue

const el = document.getElementById('app')
new Vue({
	el,
  template:`<div>One</div>`
})
new Vue({
	el,
  template:`<div>{{foo}}</div>`,
  data:{
  	foo:'foo'
  },
  created(){
  	setInterval(()=> this.foo = this.foo + '!', 500)
  }
})