This commit is contained in:
2019-12-20 21:02:24 +00:00
parent ef99023266
commit c0f10a3a2c
40 changed files with 288 additions and 378 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("ServerLog"),
helpUrl: "form-ops-log"
});
}
};
</script>