22 lines
406 B
Vue
22 lines
406 B
Vue
<template>
|
|
<UnderConstruction />
|
|
</template>
|
|
|
|
<script>
|
|
import UnderConstruction from "../components/underconstruction.vue";
|
|
|
|
export default {
|
|
components: {
|
|
UnderConstruction
|
|
},
|
|
beforeCreate() {
|
|
window.$gz.eventBus.$emit("menu-change", {
|
|
isMain: true,
|
|
icon: "fa-tools",
|
|
title: this.$ay.t("WorkOrderList"),
|
|
helpUrl: "form-customer-workorders"
|
|
});
|
|
}
|
|
};
|
|
</script>
|