我正在尝试使用 vuex 商店登录用户。
onSubmit() {
this.$store
.dispatch("auth/authenticate", {
username: "Sibi",
password: "123",
strategy: "local"
})
.then(function(result) {
console.log("Authenticated!", result);
})
.catch(function(error) {
console.error("Error authenticating!", error);
});
}
我已经关注了文档,一切似乎都适用于注册。即使我硬编码用户名和密码,它仍然显示无效