Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. methods: {
  2. getToken: function() {
  3. this.$http.post('http://gps-track.intellitrac.co.id/index.php/api_users/login',
  4. {
  5. username: this.username,
  6. password: this.password
  7. })
  8. .then(function(response) {
  9. console.log(response.data.token);
  10. })
  11. .then(function(error){
  12. console.log('Cannot get access token')
  13. })
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement