summaryrefslogtreecommitdiff
path: root/src/components/Global
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-09-09 20:08:14 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-09-25 06:27:10 +0300
commitf15cc7ac46022487ca36a3d8a66eb86791e040f9 (patch)
tree97815d7c99eb1facaf6ae2b5134833bca42ad007 /src/components/Global
parent12bc875329c0d8a9a28aa51daa6adfecb834f6f9 (diff)
downloadwebui-vue-f15cc7ac46022487ca36a3d8a66eb86791e040f9.tar.xz
Move translation into routes file
- Added intial application load document title update with created hook Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I73d18ed4a56bd04601fa7382c2d6c2ec504b03f5
Diffstat (limited to 'src/components/Global')
-rw-r--r--src/components/Global/PageTitle.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Global/PageTitle.vue b/src/components/Global/PageTitle.vue
index a77e0a07..e3dc8d0c 100644
--- a/src/components/Global/PageTitle.vue
+++ b/src/components/Global/PageTitle.vue
@@ -16,7 +16,7 @@ export default {
},
data() {
return {
- title: this.$t(this.$route.meta.title)
+ title: this.$route.meta.title
};
}
};