mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
Add title in error pages
This commit is contained in:
parent
fa08596350
commit
218894295b
@ -13,7 +13,12 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['error']
|
||||
props: ['error'],
|
||||
head () {
|
||||
return {
|
||||
title: this.error.message || 'An error occured'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -53,7 +58,7 @@ export default {
|
||||
padding: 0px;
|
||||
}
|
||||
.error-link {
|
||||
color: #42b983;
|
||||
color: #00BCD4;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
|
@ -12,7 +12,12 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['error']
|
||||
props: ['error'],
|
||||
head () {
|
||||
return {
|
||||
title: this.error.message || 'An error occured'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -52,7 +57,7 @@ export default {
|
||||
padding: 0px;
|
||||
}
|
||||
.error-link {
|
||||
color: #42b983;
|
||||
color: #00BCD4;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
|
Loading…
Reference in New Issue
Block a user