存储todo list

来源:互联网 发布:ios5.0.1软件下载 编辑:程序博客网 时间:2024/06/05 07:50
const STORAGE_KEY ='todos-vuejs'export default{ fetch:function (){ return JSON.parse(window.localStorage.getItem(STORAGE_KEY) || '[]') }, save:function(items){ window.localStorage.setItem(STORAGE_KEY,JSON.stringify(items)) }}

  • {{item.label}}
0 0
原创粉丝点击