debian-mirror-gitlab/app/assets/javascripts/security_configuration/components/section_layout.vue
2021-09-04 01:27:46 +05:30

23 lines
409 B
Vue

<script>
export default {
name: 'SectionLayout',
props: {
heading: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="row">
<div class="col-lg-5">
<h2 class="gl-font-size-h2 gl-mt-0">{{ heading }}</h2>
<slot name="description"></slot>
</div>
<div class="col-lg-7">
<slot name="features"></slot>
</div>
</div>
</template>