22 lines
418 B
Vue
22 lines
418 B
Vue
<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: "$ayiTools",
|
|
title: "WorkOrderList",
|
|
helpUrl: "form-svc-workorders"
|
|
});
|
|
}
|
|
};
|
|
</script>
|