Files
raven-client/ayanova/src/views/vendors.vue
2019-12-19 23:07:37 +00:00

22 lines
399 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: "store",
title: window.$gz.locale.get("VendorList"),
helpUrl: "form-vendors"
});
}
};
</script>