Ripple.js 介绍
Ripple.js 是一个微型框架用于创建 reactive 组件,提供插值、数据绑定和插件。简单灵活和易于扩展。
示例代码:
var Person = ripple('<div>{{name}}</div>')
.use(events)
.use(each)
.use(dispatch);
var person = new Person({
name: 'Tom'
});
person.appendTo(document.body);
Ripple.js 官网
http://ripplejs.github.io/