Trying to call in this data, but the json key has spaces:
{ 52 Week High: 175.99 }
<li>{{ company.52 Week High }}</li>
What is the right way to do this? I can't modify the json file.
This should work:
company['52 Week High']
As long as your data is formatted like this:
{ "52 Week High": 175.99 }
Working example: Vue SFC Playground