JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<div id="vue">
  <div :is="'child'"></div>
</div>

JavaScript

const child = {
  template: `<div>Child</div>`
}
new Vue({
  el: '#vue',
  components: {child}
})