I have this vue js component:
hello world
You should save your window variable in Vue.prototype
main.js
Vue.prototype.$authUser = window.authUser;
After that, you can access your data as follows:
Vue template
Vue script
let name = this.$authUser.name;