29 lines
635 B
Vue
Raw Normal View History

2018-11-01 17:19:21 +05:30
<template>
2019-02-19 18:25:07 +05:30
<section class="featured-products-section" :class='sectionType'>
<h5 class='featured-heading' v-html="title"></h5>
2019-03-31 19:46:39 +05:30
<div class="featured-products row">
2019-02-19 18:25:07 +05:30
<!-- <p class='lead text-center' v-html="description"></p> -->
<slot name="card-list-slot"></slot>
2019-03-31 19:46:39 +05:30
</div>
<div class='mt-4 text-center'>
<slot name="list-bottom"></slot>
2018-11-01 17:19:21 +05:30
</div>
</section>
</template>
<script>
export default {
2018-11-30 12:46:53 +05:30
props:['title', 'description', 'sectionType'],
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>