summaryrefslogtreecommitdiff
path: root/src/components/Global/PageTitle.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/PageTitle.vue')
-rw-r--r--src/components/Global/PageTitle.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Global/PageTitle.vue b/src/components/Global/PageTitle.vue
index e3dc8d0c..45c75edb 100644
--- a/src/components/Global/PageTitle.vue
+++ b/src/components/Global/PageTitle.vue
@@ -11,14 +11,14 @@ export default {
props: {
description: {
type: String,
- default: ''
- }
+ default: '',
+ },
},
data() {
return {
- title: this.$route.meta.title
+ title: this.$route.meta.title,
};
- }
+ },
};
</script>