Files
raven-client/ayanova/src/views/customer-workorders.vue
2020-01-06 19:22:49 +00:00

22 lines
421 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: "tools",
title: window.$gz.locale.get("WorkorderServiceList"),
helpUrl: "form-customer-workorders"
});
}
};
</script>