Created
July 12, 2016 15:03
-
-
Save felisio/717d135fef4d459b3c809d4edcd5674d to your computer and use it in GitHub Desktop.
generic actions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mport Vue from 'vue' | |
console.log(Vue.http); | |
export const resources = { | |
employees : Vue.resource('employees{/id}') | |
} | |
export function getAllEmployees({ dispatch }) { | |
resources.employee.get('/employees').then((resp)=>{ | |
console.log(resp); | |
}, (error)=>{}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment