21 lines
370 B
Vue
21 lines
370 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: "fa-cogs",
|
|
title: window.$gz.locale.get("Operations")
|
|
});
|
|
}
|
|
};
|
|
</script>
|