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'
export default {
props: { error: { type: Object } },
computed: mapState(['settings']),
props: { error: { type: Object, default: () => ({ }) } },
head () {
return { title: `${this.settings.title} - Error` }
}
},
computed: mapState(['settings'])
}
</script>