JSFiddle - React, Tailwind, and code Playground
by philll_t
HTML
<script src="https://rawgit.com/yyx990803/vue/master/dist/vue.js"></script>
<div id="app">
<span v-html="spades"></span>
</div>
Vue
new Vue({
el: '#app',
data: {
spades: ' here'
},
methods: {
}
})