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/albums | |
| 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/albums')
| -rw-r--r-- | src/site/pages/dashboard/albums/index.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/site/pages/dashboard/albums/index.vue b/src/site/pages/dashboard/albums/index.vue index d2b424b..e3ccc08 100644 --- a/src/site/pages/dashboard/albums/index.vue +++ b/src/site/pages/dashboard/albums/index.vue @@ -69,9 +69,6 @@ export default { }; }, computed: mapState(['config', 'albums']), - metaInfo() { - return { title: 'Uploads' }; - }, methods: { ...mapActions({ alert: 'alert/set' @@ -91,6 +88,11 @@ export default { this.newAlbumName = null; } } + }, + head() { + return { + title: 'Albums' + }; } }; </script> |