Files
raven-client/ayanova/src/views/inv-purchase-orders.vue
2020-06-30 21:22:11 +00:00

22 lines
412 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-shipping-fast",
title: "InventoryPurchaseOrders",
helpUrl: "form-inv-purchase-orders"
});
}
};
</script>