const provider = new this.$fireModule.auth.GoogleAuthProvider()
this.$fire.auth
	.signInWithPopup(provider)
	.catch((error) => alert(error))
	.then((data) => console.log(data.user, data.credential.accessToken))