以下是代码:
this.$refs['login-form'].validate((valid) => {
if (!valid) return false;
this.$store.dispatch('createToken', {
username: this.model.username,
password: this.model.password,
})
ESlint报错:Expected to return a value at the end of arrow function.(consistent-return)
请问如何修改代码?
感觉是少了 一个 return,你试试下面的代码