Files
raven-client/ayanova/src/views/adm-statistics.vue
2020-03-06 20:08:50 +00:00

22 lines
416 B
Vue

<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "chart-line",
title: window.$gz.translation.get("Statistics"),
helpUrl: "form-adm-statistics"
});
}
};
</script>