debian-mirror-gitlab/app/assets/javascripts/security_configuration/components/section_layout.vue

24 lines
427 B
Vue
Raw Normal View History

2021-09-04 01:27:46 +05:30
<script>
export default {
name: 'SectionLayout',
props: {
heading: {
type: String,
required: true,
},
},
};
</script>
<template>
2021-09-30 23:02:18 +05:30
<div class="row gl-line-height-20">
<div class="col-lg-4">
2021-09-04 01:27:46 +05:30
<h2 class="gl-font-size-h2 gl-mt-0">{{ heading }}</h2>
<slot name="description"></slot>
</div>
2021-09-30 23:02:18 +05:30
<div class="col-lg-8">
2021-09-04 01:27:46 +05:30
<slot name="features"></slot>
</div>
</div>
</template>