摘要:
1.生命周期 删除 beforeCompile compiled ready,新增beforeMounted mounted beforeUpdate updated 2.for循环里取消了$index track-by被替换为key(key作用是方便快速更新虚拟dom diff算法) 3.绑定原生 阅读全文
摘要:
在es6全面实行开来之前 js实现模块开发方案有: 1.AMD 异步模块开发定义 依赖前置,requireJs应用了这一规范 2.CMD通用模块定义 依赖就近 SeaJs应用了这一规范 3.Commonjs服务器端的规范 NodeJS就采用了CommonJS 4.es6有模块化的概念 export 阅读全文