Last active
April 4, 2017 18:21
-
-
Save lkostrowski/126334f580c90027be612269aa093e55 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> | |
<ul class="products-list"> | |
<slot v-if="!products.length" name="empty-basket"></slot> | |
<loader v-if="!loaded"></loader> | |
<basket-product v-else | |
v-for="(product, index) in products" | |
:key="index" | |
:product-data="product" | |
class="products-list__product"> | |
</basket-product> | |
</ul> | |
</template> | |
<script> | |
export default { | |
name: 'products-list', | |
data() { | |
return { | |
products: [], | |
loaded: false | |
}; | |
}, | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment