JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>

<div id="app">
  <compo></compo>
</div>

Babel + JSX

var Main = {
  components: {
    compo: {
      inject: ['outer'],
      template: '<p>1</p>'
    }
  }
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')