21 lines
447 B
Vue
21 lines
447 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
headerTitle: { type: String, default: '' },
|
|
headerContent: { type: String, default: '' },
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-1.5 w-full items-start mb-4">
|
|
<h2 class="text-heading-1 text-n-slate-12 break-words">
|
|
{{ headerTitle }}
|
|
</h2>
|
|
<p
|
|
v-dompurify-html="headerContent"
|
|
class="text-body-main w-full text-n-slate-11"
|
|
/>
|
|
</div>
|
|
</template>
|