File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,18 @@ import Footer from '~/components/AppFooter.vue'
22
22
23
23
export default {
24
24
components: { Header, Footer },
25
+ head () {
26
+ return {
27
+ title: ` ${ this .authorName } is listening - A Musical App` ,
28
+ link: [
29
+ {
30
+ rel: ' stylesheet' ,
31
+ href:
32
+ ' https://fonts.googleapis.com/css?family=Bungee+Hairline|Oswald'
33
+ }
34
+ ]
35
+ }
36
+ },
25
37
computed: {
26
38
authorName () {
27
39
return this .$store .state .authorName
@@ -38,18 +50,6 @@ export default {
38
50
rootClass () {
39
51
return this .isAuthView ? ' auth base' : ' base'
40
52
}
41
- },
42
- head () {
43
- return {
44
- title: ` ${ this .authorName } is listening - A Musical App` ,
45
- link: [
46
- {
47
- rel: ' stylesheet' ,
48
- href:
49
- ' https://fonts.googleapis.com/css?family=Bungee+Hairline|Oswald'
50
- }
51
- ]
52
- }
53
53
}
54
54
}
55
55
</script >
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ export const mutations = {
39
39
}
40
40
}
41
41
export const actions = {
42
- // eslint-disable-next-line require-await
43
42
async nuxtServerInit ( { commit } ) {
44
43
try {
45
44
const redisUrl = `${ clientUrl } /api/spotify/data/`
You can’t perform that action at this time.
0 commit comments