[Vuejs]-Vue.JS prints empty values from JSON Object

3👍

You should call the message since you are looping through the data prop it should be {{message.Message}} not {{data.message}} inside the paragraph tag

When you loop through data prop each loop object contains message meta data

{

      "Modified_Time": "2019-12-13T16:08:27+05:30",
      "$currency_symbol": "$",
      "Message": "Yo!",
      "Created_Time": "2019-12-13T16:08:27+05:30",
      "Name": "Me",
    },

You should be able to access each object property like this {{message.Message}} inside the v-for loop

Leave a comment