Skip to content

Instantly share code, notes, and snippets.

@jaouadballat
Created March 3, 2018 17:38
Show Gist options
  • Save jaouadballat/187bd814db7caf1473a748f2af8fa911 to your computer and use it in GitHub Desktop.
Save jaouadballat/187bd814db7caf1473a748f2af8fa911 to your computer and use it in GitHub Desktop.
<template>
<div class="container">
<div class="row">
<div class="col-md-4 mb-3" v-for="product in products" :key="product._id">
<Card :product="product" />
</div>
</div>
</div>
</template>
<script>
import Card from './Card';
export default {
props: ['products'],
components: {
Card
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment