vue3中如何像vue2中注册全局插件
Posted 菜鸟卑微
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3中如何像vue2中注册全局插件相关的知识,希望对你有一定的参考价值。
转自https://blog.csdn.net/qq_39115469/article/details/113795097
const app = createApp(App);
app.config.globalProperties.$axios = axios;
之后在引入的地方 import { getCurrentInstance } from \'vue\';
const { proxy } = getCurrentInstance();
onMounted(() => {
log(proxy.$axios)
})
以上是关于vue3中如何像vue2中注册全局插件的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Vue3 Composition API 上使用 Vue2 插件?