This commit is contained in:
2021-01-07 15:05:58 +00:00
parent 21a422ab47
commit b99115be1e
4 changed files with 13 additions and 7 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: "$ayiConciergeBell",
title: "CustomerServiceRequestList",
helpUrl: "form-svc-csr"
});
}
};
</script>