22 lines
549 B
Vue
22 lines
549 B
Vue
<template>
|
|
<div>WHAT IS THIS FOR?</div>
|
|
</template>
|
|
|
|
<script>
|
|
import UnderConstruction from "../components/underconstruction.vue";
|
|
//NOTE: I don't recall what this is suppo;sed to be fore, there is already a general History view for viewing object history timelines (event log)
|
|
export default {
|
|
components: {
|
|
//UnderConstruction
|
|
},
|
|
beforeCreate() {
|
|
window.$gz.eventBus.$emit("menu-change", {
|
|
isMain: true,
|
|
icon: "fa-history",
|
|
title: this.$ay.t("History"),
|
|
helpUrl: "form-adm-history"
|
|
});
|
|
}
|
|
};
|
|
</script>
|