JSFiddle - React, Tailwind, and code Playground
by Proger
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script>
<script src="http://squizzle.me/js/sqimitive/sqimitive.min.js"></script>
JavaScript
var Base = Sqimitive.Sqimitive.extend({
property: 'Hello',
show: function (right) {
alert(this.property + right)
},
})
var base = new Base
base.on('=show', function (sup) {
sup(this, [' - I alert'])
})
base.show()