其他分享
首页 > 其他分享> > Vue is not defined

Vue is not defined

作者:互联网

Vue is not defined


场景再现:在Vue的自定义组件中,想要调用在/static/serverconfig.json中配置的全局地址ApiUrl,在自定义组件中 console.log(Vue.prototype.ApiUrl),浏览器报错提示:Vue is not defined。

前提:所有的配置在main.js中均已写好

解决办法:
在自定义组件中重新引入一次,解决

import Vue from 'vue';

ps:网上其他人写的给click时间加.prevent事件等等都没起作用

标签:Vue,自定义,defined,报错,组件,ApiUrl
来源: https://blog.csdn.net/weixin_43452622/article/details/88233041