data-bind
v1.0.8
Published
A simple library of two-way data binding
Downloads
12
Readme
data-bind
一个简单的双向数据绑定类库,适用于没有引入MV*框架,同时也需要数据绑定的场景
Example
http://design.applinzi.com
Installing
npm install data-bind --save
How 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