Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Object property UNDEFINED in VUE v-for

I have this object inside an array called places which contains 20 similar objects
and im using v-for to get each objects data into a div, other properties work fine, but when it comes to the openingHours.text property, it gives an error of undefined

{
  ...

  "openingHours": {
    "text": "lun.-sam.: 23:59 - 23:59",
    "label": "Heures d'ouverture",
    "isOpen": false,
    "structured": [
      {
        "start": "T235900",
        "duration": "PT24H00M",
        "recurrence": "FREQ:DAILY;BYDAY:MO,TU,WE,TH,FR,SA"
      }
    ]
  },
}

you can check the images below for more clarity

figure 1

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

figure 2

>Solution :

Does every object have place.openingHours.text ?
If not you can try with:

place.openingHours?.text
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading