nuxt-error.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <div class="__nuxt-error-page">
  3. <div class="error">
  4. <svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" fill="#DBE1EC" viewBox="0 0 48 48">
  5. <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" />
  6. </svg>
  7. <div class="title">{{ message }}</div>
  8. <p v-if="statusCode === 404" class="description">
  9. <a v-if="typeof $route === 'undefined'" class="error-link" href="/"></a>
  10. <NuxtLink v-else class="error-link" to="/">Back to the home page</NuxtLink>
  11. </p>
  12. <div class="logo">
  13. <a href="https://nuxtjs.org" target="_blank" rel="noopener">Nuxt</a>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'NuxtError',
  21. props: {
  22. error: {
  23. type: Object,
  24. default: null
  25. }
  26. },
  27. computed: {
  28. statusCode () {
  29. return (this.error && this.error.statusCode) || 500
  30. },
  31. message () {
  32. return this.error.message || 'Error'
  33. }
  34. },
  35. head () {
  36. return {
  37. title: this.message,
  38. meta: [
  39. {
  40. name: 'viewport',
  41. content: 'width=device-width,initial-scale=1.0,minimum-scale=1.0'
  42. }
  43. ]
  44. }
  45. }
  46. }
  47. </script>
  48. <style>
  49. .__nuxt-error-page {
  50. padding: 1rem;
  51. background: #F7F8FB;
  52. color: #47494E;
  53. text-align: center;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. flex-direction: column;
  58. font-family: sans-serif;
  59. font-weight: 100 !important;
  60. -ms-text-size-adjust: 100%;
  61. -webkit-text-size-adjust: 100%;
  62. -webkit-font-smoothing: antialiased;
  63. position: absolute;
  64. top: 0;
  65. left: 0;
  66. right: 0;
  67. bottom: 0;
  68. }
  69. .__nuxt-error-page .error {
  70. max-width: 450px;
  71. }
  72. .__nuxt-error-page .title {
  73. font-size: 1.5rem;
  74. margin-top: 15px;
  75. color: #47494E;
  76. margin-bottom: 8px;
  77. }
  78. .__nuxt-error-page .description {
  79. color: #7F828B;
  80. line-height: 21px;
  81. margin-bottom: 10px;
  82. }
  83. .__nuxt-error-page a {
  84. color: #7F828B !important;
  85. text-decoration: none;
  86. }
  87. .__nuxt-error-page .logo {
  88. position: fixed;
  89. left: 12px;
  90. bottom: 12px;
  91. }
  92. </style>