JSFiddle - React, Tailwind, and code Playground

by hunterliu

HTML

<div id="app">
  <h1>I'm the parent title</h1>
  <my-component>
    <p>This is some original content</p>
    <p>This is some more original content</p>
  </my-component>
</div>

JavaScript

Vue.component('my-component', {
	template:`
		<div class="child">
			<slot text="hello from child"></slot>
		</div>`
})

const vm = new Vue({
	el: '#app'
})