0
如何將VueJs方法範圍綁定到返回的Firebase承諾?爲了調用VueJS莫代爾如何將VueJS方法範圍綁定到Firebase承諾
login: function() {
fireAuth.signInWithEmailAndPassword(this.signIn.email, this.signIn.password)
.then(function (user) {
if (!user.emailVerified) {
this.$modal.show('email_verification', {
text: 'Please verify your email'
})
}
}, function (error) {
console.log(error.message);
})
}
現在,這裏是錯誤:
TypeError: Cannot read property '$modal' of undefined