Files
raven-client/ayanova/src/views/inv-parts.vue
2021-01-14 19:32:08 +00:00

30 lines
592 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: "$ayiBoxes",
title: "PartList",
helpUrl: "form-inv-parts",
menuItems: [
{
title: "PartAssemblyList",
icon: "$ayiObjectGroup",
data: "inv-part-assemblies",
key: "app:nav"
}
]
});
}
};
</script>