As a newcomer to Vue, I am still in the process of learning more about it. One challenge I am facing is trying to access and format the value of an item where decimal places and commas are involved.
for (let j in data.table.items) {
console.log(data.table.items[j])
}
The code snippet above displays this value in the console: https://i.sstatic.net/2PXIK.png
Below is the table result:
https://i.sstatic.net/NjAnv.png
I am specifically looking to retrieve and format the values highlighted in red.
My goal is to obtain, for example, the 7900
value while excluding the e.g. 201803
which represents the row header. Any assistance on achieving this would be greatly appreciated. Thank you.