Pavel Sergeev
Results
1
issues of
Pavel Sergeev
const formData = new FormData() formData.append('_method', 'PATCH') formData.append('signature', data.signatureFile, data.signatureName) $axios .$post(`/v1/users/1`, formData, { headers: { "Content-Type": "multipart/form-data" } }) The same example works fine in vue + axios, but...