feat: 补充Github学习资料和Vue文章

pull/85/head
yuelin.ye 2021-09-24 14:17:38 +08:00
parent b1a0e98e88
commit f7bee098a0
1 changed files with 4 additions and 1 deletions

View File

@ -462,12 +462,13 @@ virtul DOM 也就是虚拟节点。通过 JS 的 Object 对象模拟 DOM 中的
推荐开源项目
- [ ] [awesome-vue](https://github.com/vuejs/awesome-vue)
- [ ] [vue-patterns](https://github.com/learn-vuejs/vue-patterns)有用的Vue模式技巧提示以及有帮助的精选链接
原理
- [ ] [图解 Vue 响应式原理](https://juejin.cn/post/6857669921166491662#heading-3)
- [ ] [详解 vue 的 diff 算法](https://juejin.cn/post/6844903607913938951#heading-3)
- [ ] [Vue Design](https://github.com/HcySunYang/vue-design)master分支《渲染器》 elegant分支逐行级别的源码分析
## TypeScript
TypeScript 是为开发大型应用而设计的,并且 TypeScript 可转译成 JavaScript。由于 TypeScript 是 JavaScript 的严格超集,任何现有的 JavaScript 程序都是合法的 TypeScript 程序。
@ -643,6 +644,8 @@ Electron 是一个可以使用 Web 技术如 JavaScript、HTML 和 CSS 来创建
### JS
- [ ] [33-js-concepts](https://github.com/leonardomso/33-js-concepts)
- [ ] [JavaScript安全指南](https://github.com/Tencent/secguide/blob/main/JavaScript%E5%AE%89%E5%85%A8%E6%8C%87%E5%8D%97.md#1.1)
- [ ] [What the f*ck JavaScript?](https://github.com/denysdovhan/wtfjs),有趣的 JavaScript 示例列表,附有解释
### 代码样式及安全