JSFiddle - React, Tailwind, and code Playground

by Rodwyn Moreno

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'
})