summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Global/PageTitle.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Global/PageTitle.vue b/src/components/Global/PageTitle.vue
index 20bc8050..3f8ffe66 100644
--- a/src/components/Global/PageTitle.vue
+++ b/src/components/Global/PageTitle.vue
@@ -12,10 +12,15 @@
<script>
export default {
name: 'PageTitle',
+ props: {
+ description: {
+ type: String,
+ default: '',
+ },
+ },
data() {
return {
title: this.$route.meta.title,
- description: this.$route.meta.description,
};
},
};