изменить route.js
const multerName = 'MyImage'
app.post('/api/images',
parser.single('anotherFile'), //here exact change
function(req, res){
после изменения
app.post('/api/images', parser.single('anotherFile'), function(req, res){
mageUpload.js или imageUpload.vue или imageUpload.vue.jsx
const multerName = 'MyImage'
data.append("name", "orderImage");
здесь также то же имя_мультера, что и у route.js
data.append("file", //here exact change
event.target.files[0]);
После изменения
data.append("multerName", event.target.files[0]);
необходимо поддерживать одинаковые имена как во внешней, так и в внутренней форме formData ()