Files
raven-client/ayanova/src/views/svc-workorder-templates.vue

22 lines
437 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-stamp",
title: window.$gz.translation.get("WorkorderServiceTemplate"),
helpUrl: "form-svc-workorder-templates"
});
}
};
</script>