Javascript – Issues filling up the array in a Vue component
In my ProductCard component I need to be able to create a new item with the addItem method, it does not seem to load the item in the array. <template> <div class="card"> <div v-for="item in TodoItems" :key="item.id"> <TodoItem :item="item"></TodoItem> </div>…