aboutsummaryrefslogtreecommitdiff
path: root/src/site/pages/dashboard/albums
diff options
context:
space:
mode:
authorPitu <[email protected]>2021-01-05 01:27:39 +0900
committerPitu <[email protected]>2021-01-05 01:27:39 +0900
commit5e219868b0d5eb59459cee66810dc323c836b503 (patch)
treef011c8b6346e3133144bd40eedc1e282804cfb05 /src/site/pages/dashboard/albums
parentchore: begone TODO list, hello github projects (diff)
downloadhost.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.vue8
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>