Level 102
Like this
<div v-if="contactDetails.notes.length > 1">
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
There are notes for this contact:
"notes": [ { "id": 1, "note": "this is a test note" }, { "id": 2, "note": "Here is another note" } ]
but it's displaying: There are no notes associated with Mr Test
<div v-if="contactDetails.notes > 1">
<ul>
<li v-for="notesList in contactDetails.notes" :key="notesList.id">
{{ notesList.note }}
</li>
</ul>
</div>
<div v-else>There are no notes associated with {{ fullName }}</div>
Please or to participate in this conversation.