Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 221 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 221 Bytes

ref

ref javascript like vue.js

var x=ref(12);

//watch target newvalue,oldvalue

var wh=x.watch((n,o)=>{

console.log(n);

});

x.value=13.0; //set value 13

wh(); //stop watch

x.value=14.0; //test new value