UNPKG

@toantranmei/mei-nuxt3-fetcher

Version:
18 lines (17 loc) 313 B
class HttpFactory { $fetch; constructor(fetch) { this.$fetch = fetch; } call({ method, url, fetchOptions, body }) { return this.$fetch(url, { method, body, headers: { "Content-Type": "application/json" }, ...fetchOptions }); } } export { HttpFactory };