Files
raven-client/ayanova/src/views/vendors.vue
2020-10-20 17:38:16 +00:00

22 lines
408 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: "$ayiStore",
title: "VendorList",
helpUrl: "form-vendors"
});
}
};
</script>