JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
<div @click="a">
  <el-button disabled>aaaaa</el-button>
</div>
</div>

SCSS

@import url("//unpkg.com/[email protected]/lib/theme-default/index.css");

Babel + JSX

var Main = {
  methods: {
    a(e) {
      console.log(e)
    }
  }
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')