JSFiddle - React, Tailwind, and code Playground
by nirus
HTML
<input x-id="ok" type="text" id="jst" />
JavaScript
var x = document.getElementById("jst");
var $view = {};
Object.defineProperty($view, x.id, {
set:function(val){
x.value = this.value = val;
},
get:function(){
this.value = x.value;
return x.value;
}
})