JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue"></script>
<div class="container">
<story></story>
</div>
JavaScript
Vue.component('story', {
template: '<h1>Componente Simple</h1>'
});
new Vue({
el: '.container'
})