{{ item.title }}
{{ item.title }}
编辑
删除
保存
{{ item.title }}
{{ item.title }}
编辑
删除
保存
{{ item.title }}
{{ item.title }}
编辑
删除
保存
### 这是一个关于lowdb的演示。
>[lowdb](https://github.com/typicode/lowdb)是一个很轻巧的数据库引擎,它也支持本地存储。
作者:[codetyphon](http://github.com/codetyphon)
### 关键代码
1、读取本地存储
```let todo = db.get('todo').value()```
2、写入本地存储
```db.set('todo', this.list).write()```
3、数组内容深监控
```watch:{```
```list:{```
``` handler:function(newValue,oldValue){```
``` this.save()```
``` },```
```deep:true,//数组内容发生变化也监控```
```}```
添加