This commit is contained in:
2019-12-20 21:05:21 +00:00
parent 6c85a68669
commit 59a4b518bc
2 changed files with 1 additions and 1 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: "file-contract",
title: window.$gz.locale.get("ContractList"),
helpUrl: "form-svc-contracts"
});
}
};
</script>