2018-10-30 12:55:49 +00:00
|
|
|
<template>
|
|
|
|
<section class='top-section'>
|
2019-02-19 11:31:31 +00:00
|
|
|
<div>
|
2018-10-30 12:55:49 +00:00
|
|
|
<h1 v-html="title"></h1>
|
|
|
|
<ul class="list-group">
|
|
|
|
</ul>
|
|
|
|
<p class='lead' v-html="description"></p>
|
|
|
|
<p class="mt-4">
|
2018-11-03 12:33:01 +00:00
|
|
|
<slot></slot>
|
2018-10-30 12:55:49 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
<script>
|
2018-11-03 12:33:01 +00:00
|
|
|
|
2018-10-30 12:55:49 +00:00
|
|
|
export default {
|
2018-11-03 10:44:34 +00:00
|
|
|
props: ['title', 'description'],
|
2018-11-13 11:54:07 +00:00
|
|
|
name: "TopSection",
|
2018-10-30 12:55:49 +00:00
|
|
|
};
|
|
|
|
</script>
|