0

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.

1 Answer 1

2

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.