特性Vue2Vue3
template 中只能一个根元素可以多个根元素
v-if 和 v-forv-for 优先级高v-if 优先级高
.sync整合到 v-model
$listeners整合到 $attrs
$attrs不包括 classstyle包括 classstyle
生命周期钩子destroyedunmounted
生命周期钩子destroyedbeforeUnmount
$children移除 (用 ref 代替)
$on$off$once 实例方法移除
过滤器 filter移除(用方法或计算属性代替)
$set$delete移除(新的响应式系统不再需要这种兼容写法)
事件的 .native 修饰符移除
全局变量Vue.prototypeapp.config.globalProperties
生命周期事件@hook:@vue: