JSFiddle - React, Tailwind, and code Playground
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)
}
})