JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<div>
<component></component>
</div>
</div>
JavaScript
var COMPONENT = {
render: function (createElement) {
return createElement('h1', '안녕')
}
}
new Vue({
el: '#app',
components: {
'component' : COMPONENT
}
})