This commit is contained in:
les 2020-10-25 00:31:01 +02:00
parent 85339bd9a7
commit 732643ecf3

View file

@ -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>