brotherton-erpnext/erpnext/public/js/education/lms/components/CardList.vue

29 lines
605 B
Vue
Raw Normal View History

2018-11-01 11:49:21 +00:00
<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 14:16:39 +00:00
</div>
2018-11-01 11:49:21 +00:00
</template>
<script>
export default {
props:['title', 'description'],
2018-11-13 11:54:07 +00:00
name: "CardList",
2018-11-01 11:49:21 +00:00
};
2019-02-19 12:55:07 +00:00
</script>
<style scoped>
.featured-heading {
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 12px;
font-weight: 500;
}
</style>