* * Similar to axious get(url,[config]) * * @see https://github.com/axios/axios#axiosgeturl-config * * @param {*} url resource to GET * @param {*} config request header options
(url = '/')
| 443 | * @param {*} config request header options |
| 444 | */ |
| 445 | async get (url = '/') { |
| 446 | const config = { url: url, method: 'GET' } |
| 447 | return await this.request(config) |
| 448 | } |
| 449 | |
| 450 | /** |
| 451 | * |
no test coverage detected