i am trying to pass some values from a json file to a component however i keep getting "product is undefined"
product.json
{
"product": {
"price": 1.11,
"amount": 0.11
}
}
component in vue js:
<div v-for="prod in product" :key="price">
How can i get rid of this error?
v-foryou should use array. So the product should be an array itself.