JSFiddle - React, Tailwind, and code Playground

by darkylmnx

HTML

<div id="app">
  hey
  <hello-app></hello-app>
</div>

Vue

const state = Vue.observable({ count: 0 })

setInterval(() => (state.count++), 1000)

new Vue({
	el: '#app',
  components: {
  	HelloApp: {
    	render(h) {
        return h('div', state.count)
      }
    }
  }
})