This commit is contained in:
2019-05-24 21:15:39 +00:00
parent b1640e0baa
commit b4fab723b6
3 changed files with 31 additions and 1 deletions

View 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>