Files
raven-client/ayanova/src/views/ay-history.vue
2020-04-04 18:31:08 +00:00

22 lines
475 B
Vue

<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: "fa-history",
title: this.$ay.t("History"),
helpUrl: "form-ay-history"
});
}
};
</script>