Skip to content

Instantly share code, notes, and snippets.

@wanxe
Created February 11, 2018 20:24
Show Gist options
  • Save wanxe/3a2d8095bc6237e921cd7209cd4ac5b0 to your computer and use it in GitHub Desktop.
Save wanxe/3a2d8095bc6237e921cd7209cd4ac5b0 to your computer and use it in GitHub Desktop.
Simple Repository Pattern
import Repository from './SomeAjaLibrary' // Axios, jQuery, fetch....
export default {
get () {
return Repository.get('/api/products')
},
create (payload) {
return Repository.post('/api/products', payload)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment