# 废弃的写法
[vue3废弃api官网说明](https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html)
## 1.filter
不支持filter,建议使用全局属性app.config.globalProperties.或者computed替代
## 2.$set
不支持$set,可以直接修改对象属性this.xx=XX
## 3.sync
.sync修饰符需要修改成v-model="editParams"
(Vue3自定义组件的v-model不再是触发@input方法,而是@updateValue:editParams方法)
## 4.Vue.extend
不支持extend
## 5.on,off 和 $once 实例方法已被移除
on,off 和 $once 实例方法已被移除,组件实例不再实现事件触发接口。
$emit 仍然包含于现有的 API 中。
## 6.$children
$children 不支持,迁移到$refs
## 7. this.$scopedSlots
移除 this.$scopedSlots
迁移策略: 所有 this.scopedSlots 替换为 this.scopedSlots替换为this.slots
## 8.取消KeyboardEvent.keyCode
取消`Vue2.x`中的绑定键盘事件
## 9.$listeners和$delete
取消$listeners和$delete