Skip to content

Instantly share code, notes, and snippets.

@enkot
Last active August 19, 2018 18:05
Show Gist options
  • Save enkot/7b49a06565d480aa3a79b9ce7b37bfbc to your computer and use it in GitHub Desktop.
Save enkot/7b49a06565d480aa3a79b9ce7b37bfbc to your computer and use it in GitHub Desktop.
@Component
class LoginPage extends Vue {
// ...
async loginUser() {
try {
const token = await api.loginUser(this.email, this.password)
handleLogin(token)
} catch(error) {
Toast.error(error.message)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment