Files
raven-client/ayanova/src/views/inv-parts.vue
2020-10-05 23:34:20 +00:00

22 lines
380 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: "$ayiBoxes",
title: "PartList",
helpUrl: "form-inv-parts"
});
}
};
</script>