I defined my global variable in main.js file like this
const app = Vue.createApp({})
app.config.globalProperties.$myGlobalVariable = globalVariable***
and then when I tried to access this variable $myGlobalVariable in other js file it is undefined, but I can access in vue components.
In the vue 2 it is possible to access both in js file and vue components. I hope you gonna help me :)