Vue3.0配置全局属性的方法

Vue 2.0之前我们封装axios和message等通用属性的时候是这么写的:

Vue.prototype.$api = api
Vue.prototype.$http = http

然后在组件内使用this.$http就可以调用了,但是Vue3更新了以后这样写不行了。以下是新的写法

const app=createApp(App);

app.use(store);
app.use(router);
app.use(Antd);
app.mount('#app');

// 配置全局属性
app.config.globalProperties.$message = message;
app.config.globalProperties.$http=http;
app.config.globalProperties.$api=api;

跟之前一样,使用this.$http调用即可

欢迎关注微信公众号"程序员小辉"

微信图片20190813101011.jpg

Logo

前往低代码交流专区

更多推荐