1.0.8 • Published 8 years ago
data-bind v1.0.8
data-bind
一个简单的双向数据绑定类库,适用于没有引入MV*框架,同时也需要数据绑定的场景
Example
Installing
npm install data-bind --saveHow to use
html
<p bind-main="name"></p>
<input type="text" model-main="name" />js
import DB from 'data-bind'
new DB('main', {
name: '小丸子'
});Flow chart

Run the example
npm install
npm run dev