Vue3.0 将全局的API,即:Vue.xxx 调整到应用实例(app)上
2.x 全局API(Vue) | 3.x 实例API(app) |
---|---|
Vue.config.xxxx | app.config.xxxx |
Vue.config.productionTip | 移除 |
Vue.component | app.component |
Vue.directive | app.directive |
Vue.mixin | app.mixin |
Vue.use | app.use |
Vue.prototype | app.config.globalProperties |