JSFiddle - React, Tailwind, and code Playground
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)
}
})
<div id="app">
<h1>Message</h1>
</div>
new Vue({
el: '#app',
mounted: function () {
const dom = this.$createElement('h1', 'A headline')
console.log(dom)
}
})