Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created December 20, 2018 18:42
Show Gist options
  • Save igeligel/ed1d8718a4aa586035776dc807c7adc5 to your computer and use it in GitHub Desktop.
Save igeligel/ed1d8718a4aa586035776dc807c7adc5 to your computer and use it in GitHub Desktop.
onSubmit(email, password) {
this.$store.dispatch(LOGIN, { email, password }).then(() => {
this.$store.dispatch(GET_USER_INFORMATION).then(userInf => {
this.$store.dispatch(IS_FEATURE_A_ACTIVE, userInf).then(() => {
this.$store.dispatch(IS_FEATURE_B_ACTIVE, userInf).then(() => {
this.$router.push({ name: "home" });
});
});
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment