Created
March 3, 2018 17:38
-
-
Save jaouadballat/187bd814db7caf1473a748f2af8fa911 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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