Skip to content

Latest commit

 

History

History

12_说一说Vue2与Vue3有哪些不同?

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

日期:2022/03/17 分类:Vue 题目:说一说Vue2与Vue3有哪些不同?

  • 生命周期,在CompositionAPi中使用setup替换beforeCreate和create;
  • 使用Proxy替换defineProperty;
  • 源代码由TS重写,更好的兼容TS;
  • 支持Hooks写法;
  • diff算法的优化;
  • 打包体积的减少。