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">
<el-tooltip content="Top center" placement="top" :popper-options="{removeOnDestroy:true}" disabled>
<el-button>Dark</el-button>
</el-tooltip>
</div>
CSS
@import url("//unpkg.com/[email protected]/lib/theme-chalk/index.css");
.el-dialog {
left: 100px;
}
JavaScript
var Main = {
data() {
return {
};
},
methods: {
}
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')