This commit is contained in:
2019-12-30 23:46:06 +00:00
parent 86f804a2c7
commit 3fbfe0292a
3 changed files with 107 additions and 30 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
//THIS IS THE RECORD HISTORY FEATURE SCREEN FOR AN INDIVIDUAL ITEMS RECORD HISTORY
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("History"),
helpUrl: "form-ay-history"
});
}
};
</script>