Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Created August 18, 2019 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NovoManu/7b6cc62fe14658c66af619f2379a2bbf to your computer and use it in GitHub Desktop.
Save NovoManu/7b6cc62fe14658c66af619f2379a2bbf to your computer and use it in GitHub Desktop.
import axios from 'axios'
import { BaseApi } from '@/api/baseApi'
export class AxiosApi extends BaseApi {
constructor() {
super()
}
async fetch({ url }): Promise<any> {
const { data } = await axios.get(`${this.baseUrl}${url}`)
return data
}
}
@webmonger
Copy link

No problem 👍

Article was very helpful and these issues were of minimal significance to the usefulness over all.

Cheers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment