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

18 lines
429 B
Vue
Raw Normal View History

2018-11-01 11:49:21 +00:00
<template>
2018-11-30 07:16:53 +00:00
<section :class='sectionType'>
2018-11-01 11:49:21 +00:00
<div class='container'>
<h3 class='text-center' v-html="title"></h3>
<p class='lead text-center' v-html="description"></p>
<slot name="card-list-slot"></slot>
2018-11-01 11:49:21 +00:00
<div class='mt-4 text-center'>
<slot name="list-bottom"></slot>
2018-11-01 11:49:21 +00:00
</div>
</div>
</section>
</template>
<script>
export default {
2018-11-30 07:16:53 +00:00
props:['title', 'description', 'sectionType'],
2018-11-13 11:54:07 +00:00
name: "CardList",
2018-11-01 11:49:21 +00:00
};
</script>