29 lines
605 B
Vue
Raw Normal View History

2018-11-01 17:19:21 +05:30
<template>
<div class="featured-products-section py-3">
<h5 class='featured-heading' v-html="title"></h5>
<div class="featured-products row">
<!-- <p class='lead text-center' v-html="description"></p> -->
<slot name="card-list-slot"></slot>
</div>
<div class='mt-4 text-center'>
<slot name="list-bottom"></slot>
</div>
2019-03-31 19:46:39 +05:30
</div>
2018-11-01 17:19:21 +05:30
</template>
<script>
export default {
props:['title', 'description'],
2018-11-13 17:24:07 +05:30
name: "CardList",
2018-11-01 17:19:21 +05:30
};
2019-02-19 18:25:07 +05:30
</script>
<style scoped>
.featured-heading {
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 12px;
font-weight: 500;
}
</style>