极小的响应式模板引擎:Reactive
jopen
10年前
Reactive 是简单灵活的模板和绑定视图的引擎,支持自定义绑定,支持在模块修改的时候实时更新。
快速入门:
var view = reactive('<p>Hello {name}!</p>', { name: 'Adam' }); // you can add the view "element" to the html whenever you want // view.el contains the html element document.body.appendChild(view.el);