iachat/app/javascript/dashboard/routes/dashboard/settings/SettingsSubPageHeader.vue
Muhsin Keloth 9606abe251
chore: Fix Eslint warnings (#3654)
* Fix all the eslint warnings

* Revert the schema
2021-12-27 13:49:31 +05:30

18 lines
334 B
Vue

<template>
<div class="column">
<h2 class="page-sub-title">
{{ headerTitle }}
</h2>
<p class="small-12 column" v-html="headerContent"></p>
</div>
</template>
<script>
export default {
props: {
headerTitle: { type: String, default: '' },
headerContent: { type: String, default: '' },
},
};
</script>