我想为我的服务器的 url 设置一个全局变量。
我在我的 main.ts 上写了这个
Vue.prototype.$apiUrl = "http://localhost:3000";
然后尝试在 App.vue 中使用它
console.log(this.$apiUrl)
我可以在浏览器的控制台中看到 url。
但我收到了这个错误:
Property '$apiUrl' does not exist on type 'App'.Vetur(2339)
我无法继续,因为在应用程序的某些部分 this.$apiUrl 由于某种原因未定义。
我该如何解决?