摘要: app.component.ts https://github.com/wing1377/TodosMVC/blob/master/todomvc-app-angular/src/app/app.component.ts app.component.html https://github.com/w 阅读全文
posted @ 2020-10-02 15:08 wing1377 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 起步 准备 下载静态模板 git clone https://github.com/tastejs/todomvc-app-template.git --depth 1 在静态文件根目录下 npm install 初始化项目 ng new todomvc-angular 在进行基础的选择之后,ctr 阅读全文
posted @ 2020-10-02 12:14 wing1377 阅读(147) 评论(0) 推荐(0) 编辑
摘要: public todos: { id: number, title: string, done: boolean }[] = JSON.parse(window.localStorage.getItem('todos') || '[]') ngDoCheck(){ window.localStora 阅读全文
posted @ 2020-10-02 12:03 wing1377 阅读(385) 评论(0) 推荐(0) 编辑