mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-21 14:19:41 +02:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
import { apiReq } from "./api-utils";
|
|
|
|
export default {
|
|
// import api from "../api";
|
|
async uploadFile(url, fileObject) {
|
|
let response = await apiReq.post(url, fileObject, {
|
|
headers: {
|
|
"Content-Type": "multipart/form-data",
|
|
},
|
|
});
|
|
return response.data;
|
|
},
|
|
};
|