Files
raven-client/ayanova/src/views/cust-headoffices.vue
2020-04-04 18:31:08 +00:00

22 lines
406 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-sitemap",
title: this.$ay.t("HeadOfficeList"),
helpUrl: "form-cust-headoffices"
});
}
};
</script>