JSFiddle - React, Tailwind, and code Playground
by Theara Yuom
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-alert title="success alert" type="success">
<template slot="title">
{{msg}}
</template>
</el-alert>
</template>
</div>
SCSS
@import url("//unpkg.com/[email protected]/lib/theme-chalk/index.css");
Babel + JSX
new Vue({
data:{
msg: [{name: 'A', gender: 'M'}, 2,3]
}
}).$mount('#app')