This commit is contained in:
24
ayanova/src/views/notfound.vue
Normal file
24
ayanova/src/views/notfound.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<v-layout justify-center>
|
||||
<v-flex xs12>
|
||||
<div class="text-xs-center">
|
||||
<v-icon color="red" size="100">fa-dragon</v-icon>
|
||||
<div class="headline">{{"404 - " + this.$gzlocale.get("ErrorAPI2010")}}</div>
|
||||
</div>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
beforeCreate() {
|
||||
this.$gzevent.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "fa-dragon",
|
||||
title: "404 - " + this.$gzlocale.get("ErrorAPI2010")
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user