一、全局api更改
| vue2 | vue3 | 定义 |
|---|---|---|
| Vue.config.xxx | app.config.xxx | 包含 Vue 的全局配置 |
| Vue.config.productionTip | 移除 | 生成生产提示是否开启 |
| Vue.component | app.component | 全局组件 |
| Vue.directive | app.directive | 全局指令 |
| Vue.mixin | app.mixin | 全局混入 |
| Vue.use | app.use | 全局插件安装 |
| Vue.prototype | app.config.globalProperties | 全局变量 |
二、其他配置
-
移除v-on的keyCode修饰符,不支持config.keyCodes
-
移除v-on的native修饰符
//声明自定义事件close
export default{
emits:['close']
}
- 移除过滤器filter