Seeking help on passing multiple props to a component using v-for:
<my-component v-for="(item, index) in items"></my-component>
The data structure 'items' consists of:
items: {
1: { name: "Apple", color: "Red" },
2: { name: "Banana", color: "Yellow" }
}
I tried implementing this but faced difficulties. Here is a reference snippet:
https://example.com/codepen-link
Any suggestions or guidance would be highly appreciated!