this.$store.dispatch('user/login', this.loginForm).then(() => {
...
}
直接使用: this.$store.dispatch('模块名/action名', 参数)
user是模块名称,login是模块中的函数名称。
this.$store.dispatch('user/login', this.loginForm).then(() => {
...
}
直接使用: this.$store.dispatch('模块名/action名', 参数)
user是模块名称,login是模块中的函数名称。