JSFiddle - React, Tailwind, and code Playground
by abernov
HTML
<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
<template>
<el-popover placement="top-start" title="Title" width="200" trigger="hover"
content="this is content, this is content, this is content">
<div slot="reference">Hover to activate</div>
</el-popover>
</template>
</div>
SCSS
@import url("//unpkg.com/[email protected]/lib/theme-chalk/index.css");
Babel + JSX
var Main = {
};
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')