Skip to content

Instantly share code, notes, and snippets.

@beardcoder
Created July 17, 2019 07:30
Embed
What would you like to do?
Sample api file for js api calls
export default {
create(payload: any) {
},
show(id: number) {
},
index() {
},
update(payload: any) {
},
delete(id: any) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment