JSFiddle - React, Tailwind, and code Playground

by ChangJoo Park

HTML

<div id="app">
  <h1>Message</h1>
</div>

JavaScript

new Vue({
	el: '#app',
  mounted: function () {
		const dom = this.$createElement('h1', 'A headline')
    console.log(dom)
  }
})