I wish to directly send the data via parameters instead of using an array
This is how the console is displaying the data:
I want it to be sent in this format directly:
ID: 3 Description: Executing
Code: refresh () { this.$axios.get()
this.$axios.get("/Operational/GetReport", {
params: {
status: this.status
}
}).then(res => {
this.deadlines = res.data
this.$refs.chart1.updateSeries([{
name: 'ON TIME',
data: [this.deadlines.onTime, this.deadlines.onSchedule, this.deadlines.delayed]
}])
})