vue3升级哪些重要功能
- createApp
- emits属性
- 生命周期
- 多事件
<!-- 在methods里面可以定义多个事件,用,隔开 --> <button @click="one($event), two($event)">submit</button> - Fragment(template里面可以有多个根标签)
- 移除.sync
- 移除filter(用method 计算属性代替)
- 异步组件写法
- teleport(把html代码挂载到其他dom上)
- suspense(语法糖,实现下载时页面loading)
- Composition Api