全局 API 的转移

  • 全局配置
    • vue2: Vue.config.XXX
    • vue3: app.config.XXX
  • 全局组件
    • vue2: Vue.component
    • vue3: app.component
  • 全局指令
    • vue2: Vue.directive
    • vue3: app.directive
  • 全局混入
    • vue2: Vue.mixin
    • vue3: app.mixin
  • 全局使用插件
    • vue2: Vue.use
    • vue3: app.use
  • Vue 原型实例对象
    • vue2: Vue.prototype
    • vue3: app.config.globalProperties

部分功能的变更

  • @xx.native 移除

    • vue2 中使用 .native 用于区别 原生和自定义事件
    • vue3 中通过子组件 emits 声明项来区别 原生和自定义事件, emits 中进行声明了的事件,为自定义事件,未进行声明的事件为原生事件
  • filter 过滤器 移除

上次更新:
贡献者: Roking-wang