Files
raven-client/ayanova/src/views/svc-pm-list.vue

22 lines
443 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-business-time",
title: window.$gz.translation.get("WorkorderPreventiveMaintenanceList"),
helpUrl: "form-svc-pm-list"
});
}
};
</script>