JSFiddle - React, Tailwind, and code Playground

by SUNGMIN SHIN

HTML

<div id="container">
  <story></story>
</div>
<!-- // #container -->

<!-- template(#story-template) -->
<script type="text/template" id="story-template">
	<h1>my horse is amazing!</h1>
</script>

JavaScript

Vue.component('story', {
	template: '#story-template'
});

new Vue({
	el: '#container'
});