mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
33 lines
756 B
Vue
33 lines
756 B
Vue
<template>
|
|
<v-app>
|
|
<center>
|
|
<v-icon size="100">mdi-alert-circle</v-icon>
|
|
<h1
|
|
class="background--text"
|
|
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
|
|
>
|
|
An error occured!
|
|
</h1>
|
|
<v-btn to="/">Reload Application</v-btn>
|
|
<v-btn to="/mods/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: {{ $route.fullPath }}</div>
|
|
</div>
|
|
</center>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
layout: "empty",
|
|
props: {
|
|
error: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
},
|
|
};
|
|
</script>
|