0👍
Check your global variable in main.js
which you’re trying to use.
Vue 2 format:
Vue.prototype.$http = new HTTPService();
Vue 3 format:
const app = createApp(RootComponent)
app.config.globalProperties.$http = new HTTPService();
Source:stackexchange.com