diff options
| author | Pitu <[email protected]> | 2021-01-05 01:27:39 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-01-05 01:27:39 +0900 |
| commit | 5e219868b0d5eb59459cee66810dc323c836b503 (patch) | |
| tree | f011c8b6346e3133144bd40eedc1e282804cfb05 /src/site/pages/dashboard/account.vue | |
| parent | chore: begone TODO list, hello github projects (diff) | |
| download | host.fuwn.me-5e219868b0d5eb59459cee66810dc323c836b503.tar.xz host.fuwn.me-5e219868b0d5eb59459cee66810dc323c836b503.zip | |
Add meta name to pages
Diffstat (limited to 'src/site/pages/dashboard/account.vue')
| -rw-r--r-- | src/site/pages/dashboard/account.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/site/pages/dashboard/account.vue b/src/site/pages/dashboard/account.vue index 3a9d37c..05b969b 100644 --- a/src/site/pages/dashboard/account.vue +++ b/src/site/pages/dashboard/account.vue @@ -120,9 +120,6 @@ export default { user: state => state.auth.user }) }, - metaInfo() { - return { title: 'Account' }; - }, methods: { ...mapActions({ getUserSetttings: 'auth/fetchCurrentUser' @@ -169,6 +166,11 @@ export default { const response = await this.$store.dispatch('auth/requestAPIKey'); this.$buefy.toast.open(response.message); } + }, + head() { + return { + title: 'Account' + }; } }; </script> |