[Vuejs]-How do I fix the bug: "TypeError: firebase.auth.sendPasswordResetEmail is not a function" in a Vue app with Firebase?

3👍

Silly me. I forgot a pair of braces in the function I was calling. As André Kool pointed out in the comments, it was supposed to be firebase.auth().sendPasswordResetEmail(this.email);. I missed the parentheses after auth.
Thanks again Mr. André. I ought to up my copy-paste game up one notch.

👤Nogdev

Leave a comment