0👍
✅
Solved.
I just had to pass the product inside the row Items
Updating this
<v-flex xs12 v-for="(item, index) of rowItems" :key="index">
To
<v-flex xs12 v-for="(item, index) of rowItems[product]" :key="index">
Source:stackexchange.com