[Vuejs]-Can't print value from array of objects

3πŸ‘

βœ…

In the chat session we managed to solve his issue.

It was caused by the fact, that he was using Array of Arrays instead of Array of Objects. Because Array can be used only with index, not field name, {{el.url}} was not working.

The code to get values from LocalStorage had to be changed to:

mounted() { 
  for(let obj of Object.entries(localStorage)) { 
    var x = {}; 
    x.url = obj[0]; 
    x.date = obj[1]; 
    this.lastpasts.push(x);    
  } 
}

Now, it is possible to use {{el.url}}

Leave a comment