JSFiddle - React, Tailwind, and code Playground

by Rodwyn Moreno

HTML

<script src="https://unpkg.com/vue"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">

<template id="story-template">
    <h1>¡Mi caballo es genial!</h1>
</template>

<div class="container">
  <story></story>
  <story></story>
  <story></story>
</div>

JavaScript

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

new Vue({
  el: '.container'
})