JSFiddle - React, Tailwind, and code Playground

by alekzonder

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/vue/0.10.6/vue.js"></script>
<div id="work"></div>

CSS

div {
    width: 50px;
    height: 50px;
    border: solid 1px gray;
    margin-bottom: 5px;
}

JavaScript

new Vue({
    el: '#work',
    template: '{{test}}',
    ready: function() {
       this.test = true;   
    }
});