blob: e3dc8d0cb74e7a34d45946d144dda8c4db0d3d38 [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,
14 default: ''
15 }
16 },
Yoshie Muranakac11d3892020-02-19 08:07:40 -080017 data() {
18 return {
Yoshie Muranakaf15cc7a2020-09-09 10:08:14 -070019 title: this.$route.meta.title
Yoshie Muranakac11d3892020-02-19 08:07:40 -080020 };
Yoshie Muranaka8d129102019-12-19 09:51:55 -080021 }
22};
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>