JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  <my-child></my-child>
</div>

JavaScript

new Vue({
  el: '#app',
  
  components: {
    MyChild: {
      template: `
        <div>
          <TextArea>Hi<strong>T</strong></TextArea>
        </div>
      `,
      components: {
        TextArea: {
          template: `
            <div>
              <slot></slot>
            </div>
          `
        }
      }
    }
  }
})