[Vuejs]-Show JSON Data property in for each loop of Vue.js Template

0πŸ‘

βœ…

It looks like you have stringified data in the records column. Try this:

<tr v-for="Record in records">
  <td>{{ JSON.parse(Record.Currency).Code }}</td>
  <td>{{ JSON.parse(Record.Country).Name }}</td>
</tr>

https://jsfiddle.net/01ogLreg/

Leave a comment