24 lines
382 B
Vue
24 lines
382 B
Vue
<template>
|
|
<!-- eslint-disable vue/no-v-html -->
|
|
<h4
|
|
class="section-title"
|
|
v-html="value.text"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['value']
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@/styles/_variables.scss";
|
|
@import "@/styles/_mixins.scss";
|
|
|
|
.section-title {
|
|
margin-bottom: 30px;
|
|
@include heading-line-height;
|
|
}
|
|
</style>
|