I'm facing an issue with displaying data pulled from an API in my vue console. Despite it showing up there, I can't seem to get it to show in my markup. Specifically, the advertiser_id field always appears blank even though other data like clicks, earnings, and orders display fine using v-html.
Could this be due to the data being somehow read-only or protected? I find it strange that it shows up in the vue console if that were the case.
The structure of the API response is as follows:
{
"1": {
"advertiser_id": "3184",
"clicks": "27,577",
"orders": "10,722",
"earnings_per_click": "257.11",
},
}