mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
31 lines
644 B
Vue
31 lines
644 B
Vue
<template>
|
|
<v-app>
|
|
<center>
|
|
|
|
<v-icon size="100">mdi-alert-circle</v-icon>
|
|
<h1 class="grey--text">An error occured!</h1>
|
|
<v-btn to="/">Reload Application</v-btn>
|
|
<v-btn to="/logs">Show Logs</v-btn>
|
|
|
|
|
|
<div style="margin-top: 5em; color: #999; font-size: 0.75em;">
|
|
<div style="font-size: 1.4em;">Error Information</div>
|
|
<div>Code: {{ error.statusCode }}</div>
|
|
<div>Path: {{ this.$route.fullPath }}</div>
|
|
</div>
|
|
|
|
</center>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
layout: 'empty',
|
|
props: {
|
|
error: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
}
|
|
}
|
|
</script>
|