Files
raven-client/ayanova/src/views/inventory-adjustments.vue
2019-12-18 20:38:32 +00:00

22 lines
445 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: "dolly",
title: window.$gz.locale.get("InventoryPartInventoryAdjustments"),
helpUrl: "user-form-inventory-adjustment-list"
});
}
};
</script>