This commit is contained in:
2020-04-07 18:06:39 +00:00
parent 74476c3dec
commit 167357a0bd
4 changed files with 64 additions and 39 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-file-alt",
title: this.$ay.t("Report"),
helpUrl: "form-ay-report"
});
}
};
</script>