[Vuejs]-TypeError: Cannot read properties of undefined (reading 'day')

0๐Ÿ‘

โœ…

 **somehow what was needed was to iterate the object like this**              
   <div class="day">
            <div v-for="(value) in dayappointment.visit" :key="value" 
             class="dayboxes">
                {{value}}
            </div>
        </div>

Leave a comment