1 var user = firebase.auth().currentUser;user.updateProfile({ displayName: "Jane Q. User", photoURL: "https://example.com/jane-q-user/profile.jpg"}).then(function() { // Update successful.}).catch(function(error) { // An error happened.});
1this.$fireAuth.currentUser.updateProfile({
2 displayName: '',
3 photoURL: '',
4 email: ''
5 })
6 .then((r) => {
7 console.log(r)
8 })
9 .catch((e) => {
10 console.log(e)
11})