Files
raven-client/ayanova/src/views/nofeaturesavailable.vue
2021-06-16 17:52:58 +00:00

50 lines
1.4 KiB
Vue

<template>
<v-row justify-center>
<v-col cols="12">
<div class="text-center">
<v-icon color="primary" size="100">$ayiEgg</v-icon>
<div class="text-h5 mt-8" v-if="ready">
{{ $ay.t("NoFeaturesAvailable") }}
</div>
</div>
</v-col>
</v-row>
</template>
<script>
export default {
data() {
return {
ready: false
};
},
async created() {
await window.$gz.translation.cacheTranslations(["NoFeaturesAvailable"]);
this.ready = true;
// let badPath = this.$router.history.current.path;
// //If this happens too early then it might not have all the setup stuff available which would trigger an infinite loop
// if (
// !window ||
// !window.$gz ||
// !window.$gz.eventBus ||
// !window.$gz.translation ||
// !window.$gz.store
// ) {
// this.msg = '404 - NOT FOUND: "' + badPath + '"';
// } else {
// let notFoundTranslated = this.$ay.t("ErrorAPI2010");
// //format the message
// this.msg = "404 - " + notFoundTranslated + ': "' + badPath + '"';
// //log it in case we need to see it in tech support
// window.$gz.store.commit("logItem", this.msg);
// //set the title of the window
// window.$gz.eventBus.$emit("menu-change", {
// isMain: true,
// icon: "$ayiDragon",
// title: "404 - " + notFoundTranslated
// });
// }
}
};
</script>