{{product.brand}} div>
This is my store in Vue dev tools:
This is my Vue component:
{{ product.brand }}
If I use this:
{{allProducts}}
I got all the products.
But when trying to use this loop:
{{ product.brand }}
Do not show.
Can you tell me what to do?
allProductsis an object with propertyproducts, so in order to loop over products tryproduct in allProducts.productsconst app = Vue.createApp({ data() { return { allProducts: { products: [ {brand: 'aaa'}, {brand: 'bbb'} ] } }; }, }) app.mount('#demo')