This commit is contained in:
2020-12-28 23:37:16 +00:00
parent 5c18d5d6ce
commit 08179b8582
10 changed files with 1856 additions and 92 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction data-cy="underconstruction" />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "$ayiCalculator",
title: "Accounting",
helpUrl: "form-acc-accounting"
});
}
};
</script>