Files
raven-client/ayanova/src/views/adm-history.vue
2020-06-03 22:21:52 +00:00

23 lines
573 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",
hideSearch: true
});
}
};
</script>