0👍
✅
You can set a computed property where you shuffle your products list, something like this:
computed {
shufflesProducts() {
return vm.products.sort(() => Math.random() - 0.5);
}
}
Source:stackexchange.com