最赞回答 / 涩色
localStorage 有个 clear() 可以删除所有的 localStorage...不过这个应该是做成删除某个待办事项, 在items移除该元素就行了吧。
2018-09-07
最新回答 / 三三四
可以修改config下的index.js文件中port属性, 比如host: 'localhost',port: 8088,修改完后重启一遍node, 在浏览器访问时直接用localhost:8088就可以访问啦
2018-08-30
最赞回答 / 权御天下_二次元
addNew: function () { if(this.newItem = ''){ this.items.push({ label:this.newItem, isFinished: false }) this.newItem = '' }}
2018-08-21
已采纳回答 / 慕仔4782833
fetch:function(){return JSON.parse(window.localStorage.getItem(STORAGE_KEY||"[]"))},这里面用“[]”肯定是不对的,不论引用是否正确这里也会报错,不知道是不是这个导致的,
2018-08-13