JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/element-ui/lib/index.js"></script>
<div id="app">
<el-button>默认按钮</el-button>
<el-button type="primary" @click.native="aa">主要按钮</el-button>
<el-button type="text">文字按钮</el-button>
</div>

SCSS

@import url("//unpkg.com/element-ui/lib/theme-default/index.css");

Babel + JSX

new Vue().$mount('#app')