How to observe firebase.auth().currentUser.displayName and other attributes for changes?
问题 I am using firebase auth and when users change their profile, such as their displayName , photoURL , or email etc. the onAuthStateChanged callback won't be fired, but the underlying firebase.auth().currentUser gets updated automatically. I need to update the UI after the user updates their profile, ie. I would like to keep firebase.auth().currentUser in sync with the client store (specifically vuex or redux -like store). Is there a way to observe firebase.auth().currentUser for changes, or