summaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index a5a768a5..30de752b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -13,7 +13,7 @@ export default {
name: 'App',
watch: {
$route: function(to) {
- document.title = to.meta.title || 'Page is Missing Title';
+ document.title = this.$t(to.meta.title) || 'Page is missing title';
}
}
};