I am having trouble appending an object to FormData using Axios. I do not want to send data by JSON.stringify()
data () {
return {
product: {
title: '',
description: '',
properties: {
property1: '',
property2: ''
}
}
}
}
This is what I need:
{title: '', description: '', properties:{property1: '', property2: ''}}