Double-checking my approach here. In my Vuex store, I have an array of objects that I want to iterate over and render a component for each object. This array is named projects
.
This is how the loop is structured:
<project-item v-for="project in projects" v-bind:project="project" :key="project.id"></project-item>
The rendered output appears as expected on the screen, but I just want to confirm that I'm following best practices.