Hey Ben, can you look at this Vue component? I'm trying to render a list dynamically.
Sure, send it over. What part is giving you trouble?
It's the `v-for` directive. I have an array of objects, and I want to display the 'name' property for each.
Okay, how are you fetching the data? Is it in the `data()` function?
Yes, it's initialized there. I'm using `v-for='item in items'` in the template. It works for simple arrays, but not this one.
Are you using the key attribute? That's crucial for lists in Vue. You should add `:key='item.id'` or something unique.
Ah, right! I forgot the key. That should fix it. Thanks!
No problem. Let me know if anything else comes up.