Files
hoppscotch/layouts/error.vue
2020-09-22 22:36:37 +05:30

51 lines
912 B
Vue

<template>
<div class="page page-error">
<img src="~static/icons/error.svg" :alt="$t('error')" class="error_banner" />
<h2>{{ error.statusCode }}</h2>
<h3>{{ error.message }}</h3>
<p>
<nuxt-link to="/">
<button>{{ $t("go_home") }}</button>
</nuxt-link>
</p>
<p>
<a href @click.prevent="reloadApplication">{{ $t("reload") }}</a>
</p>
</div>
</template>
<style scoped lang="scss">
// Center the error page in the viewport.
.page-error {
@apply flex;
@apply items-center;
@apply justify-center;
@apply flex-col;
@apply text-center;
}
.error_banner {
width: 256px;
}
</style>
<script>
export default {
props: ["error"],
methods: {
reloadApplication() {
this.$router.push("/", () => window.location.reload())
},
},
head() {
return {
bodyAttrs: {
class: "sticky-footer",
},
}
},
}
</script>