minor
This commit is contained in:
parent
85339bd9a7
commit
732643ecf3
1 changed files with 3 additions and 3 deletions
|
@ -9,10 +9,10 @@
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: { error: { type: Object } },
|
props: { error: { type: Object, default: () => ({ }) } },
|
||||||
computed: mapState(['settings']),
|
|
||||||
head () {
|
head () {
|
||||||
return { title: `${this.settings.title} - Error` }
|
return { title: `${this.settings.title} - Error` }
|
||||||
}
|
},
|
||||||
|
computed: mapState(['settings'])
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue