blob: a77e0a075a6d714d55eb99ff014a757aa6d58386 [file] [log] [blame]
<template>
<div class="page-title">
<h1>{{ title }}</h1>
<p v-if="description">{{ description }}</p>
</div>
</template>
<script>
export default {
name: 'PageTitle',
props: {
description: {
type: String,
default: ''
}
},
data() {
return {
title: this.$t(this.$route.meta.title)
};
}
};
</script>
<style lang="scss" scoped>
.page-title {
margin-bottom: $spacer * 2;
}
p {
max-width: 72ch;
}
</style>