JSFiddle - React, Tailwind, and code Playground

by Alex Babakhanov

HTML

<script src='https://unpkg.com/[email protected]/dist/vue.js'></script>

<div id='app'>
  <my-component></my-component>
</div>

JavaScript

Vue.component('my-component', {
  template: '<h2>{{greatings}}</h2>',
  data: function () {
    return {
      greatings: 'Hello from component'
    };
  }
});

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