2018-11-01 11:49:21 +00:00
|
|
|
<template>
|
|
|
|
<section class='section-padding section-bg'>
|
|
|
|
<div class='container'>
|
|
|
|
<h3 class='text-center' v-html="title"></h3>
|
|
|
|
<p class='lead text-center' v-html="description"></p>
|
2018-11-14 08:53:06 +00:00
|
|
|
<slot name="card-list-slot"></slot>
|
2018-11-01 11:49:21 +00:00
|
|
|
<div class='mt-4 text-center'>
|
2018-11-14 08:53:06 +00:00
|
|
|
<slot name="list-bottom"></slot>
|
2018-11-01 11:49:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</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
|
|
|
};
|
|
|
|
</script>
|