blob: 45c75edb502b6b820f237ec04748dd716c6102f0 [file] [log] [blame]
Yoshie Muranaka8d129102019-12-19 09:51:55 -08001<template>
Yoshie Muranakadb6fd252020-02-11 13:38:00 -08002 <div class="page-title">
Yoshie Muranaka8d129102019-12-19 09:51:55 -08003 <h1>{{ title }}</h1>
4 <p v-if="description">{{ description }}</p>
Yoshie Muranakadb6fd252020-02-11 13:38:00 -08005 </div>
Yoshie Muranaka8d129102019-12-19 09:51:55 -08006</template>
7
8<script>
9export default {
10 name: 'PageTitle',
Derick Montague09e45cd2020-01-23 15:45:57 -060011 props: {
12 description: {
13 type: String,
Derick Montague602e98a2020-10-21 16:20:00 -050014 default: '',
15 },
Derick Montague09e45cd2020-01-23 15:45:57 -060016 },
Yoshie Muranakac11d3892020-02-19 08:07:40 -080017 data() {
18 return {
Derick Montague602e98a2020-10-21 16:20:00 -050019 title: this.$route.meta.title,
Yoshie Muranakac11d3892020-02-19 08:07:40 -080020 };
Derick Montague602e98a2020-10-21 16:20:00 -050021 },
Yoshie Muranaka8d129102019-12-19 09:51:55 -080022};
23</script>
24
25<style lang="scss" scoped>
Yoshie Muranaka8d129102019-12-19 09:51:55 -080026.page-title {
27 margin-bottom: $spacer * 2;
28}
Yoshie Muranaka8d129102019-12-19 09:51:55 -080029p {
30 max-width: 72ch;
31}
32</style>