Skip to content

Instantly share code, notes, and snippets.

@enkot
Last active August 18, 2018 14:06
Show Gist options
  • Save enkot/3bded6db9c9e05f0cf2924eb251c6ac6 to your computer and use it in GitHub Desktop.
Save enkot/3bded6db9c9e05f0cf2924eb251c6ac6 to your computer and use it in GitHub Desktop.
promise.ts
@Component
class LoginPage extends Vue {
// ...
loginUser() {
api.loginUser(this.email, this.password)
.then(handleLogin)
.catch(error => Toast.error(error.message))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment