JSFiddle - React, Tailwind, and code Playground
by SUNGMIN SHIN
HTML
<div id="container">
<story></story>
</div>
<!-- // #container -->
<!-- template(#story-template) -->
<template id="story-template">
<h1>my horse is amazing!</h1>
</template>
JavaScript
Vue.component('story', {
template: '#story-template'
});
new Vue({
el: '#container'
});