我正在尝试实现vue-authenticate,但是从他们的文档中获取的以下示例代码存在问题:
new Vue({
methods: {
login: function () {
this.$auth.login({ email, password }).then(function () {
// Execute application logic after successful login
})
},
register: function () {
this.$auth.register({ name, email, password }).then(function () {
// Execute application logic after successful registration
})
}
}
})
财产从何$auth
而来?我在任何地方都看不到它的定义。我查看了文档和 repo 中的示例代码,但都没有提供任何帮助。