Files
raven-client/ayanova/src/views/inv-part-inventory.vue
2019-12-20 21:02:24 +00:00

22 lines
429 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: "pallet",
title: window.$gz.locale.get("PartByWarehouseInventoryList"),
helpUrl: "form-inv-part-inventory"
});
}
};
</script>