Nuxt/lib/app/components/nuxt-error.vue

92 lines
2.1 KiB
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
<div class="__nuxt-error-page">
<div class="error">
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" fill="#DBE1EC" viewBox="0 0 48 48"><path d="M22 30h4v4h-4zm0-16h4v12h-4zm1.99-10C12.94 4 4 12.95 4 24s8.94 20 19.99 20S44 35.05 44 24 35.04 4 23.99 4zM24 40c-8.84 0-16-7.16-16-16S15.16 8 24 8s16 7.16 16 16-7.16 16-16 16z"/></svg>
2017-08-05 10:24:12 +00:00
<div class="title">{{ message }}</div>
<p class="description" v-if="statusCode === 404">
2017-09-01 16:30:49 +00:00
<nuxt-link class="error-link" to="/"><%= messages.back_to_home %></nuxt-link>
</p>
<% if(debug) { %>
2017-09-01 16:30:49 +00:00
<p class="description" v-else><%= messages.client_error_details %></p>
<% } %>
2017-08-05 10:24:12 +00:00
<div class="logo">
2017-09-01 16:30:49 +00:00
<a href="https://nuxtjs.org" target="_blank" rel="noopener"><%= messages.nuxtjs %></a>
2016-11-07 01:34:58 +00:00
</div>
</div>
</div>
2016-11-07 01:34:58 +00:00
</template>
<script>
export default {
name: 'nuxt-error',
2016-11-19 21:48:06 +00:00
props: ['error'],
head () {
return {
title: this.message,
meta: [
{
name: 'viewport',
content: 'width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no'
}
2017-08-05 10:24:12 +00:00
]
2016-11-19 21:48:06 +00:00
}
2017-08-10 09:49:58 +00:00
},
computed: {
statusCode () {
return (this.error && this.error.statusCode) || 500
},
message () {
2017-09-01 16:30:49 +00:00
return this.error.message || '<%= messages.client_error %>'
2017-08-10 09:49:58 +00:00
}
2016-11-19 21:48:06 +00:00
}
2016-11-07 01:34:58 +00:00
}
</script>
2017-08-05 10:24:12 +00:00
<style>
.__nuxt-error-page {
2017-09-01 16:40:01 +00:00
padding: 1rem;
background: #F7F8FB;
color: #47494E;
text-align: center;
2017-08-05 10:24:12 +00:00
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: sans-serif;
font-weight: 100 !important;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
2016-11-07 01:34:58 +00:00
}
.__nuxt-error-page .error {
max-width: 450px;
}
.__nuxt-error-page .title {
font-size: 1.5rem;
margin-top: 15px;
color: #47494E;
margin-bottom: 8px;
}
.__nuxt-error-page .description {
color: #7F828B;
line-height: 21px;
margin-bottom: 10px;
2016-11-07 01:34:58 +00:00
}
2017-08-05 19:33:07 +00:00
.__nuxt-error-page a {
color: #7F828B !important;
text-decoration: none;
}
.__nuxt-error-page .logo {
position: fixed;
2017-09-01 16:32:22 +00:00
left: 12px;
bottom: 12px;
}
2016-11-07 01:34:58 +00:00
</style>