Files
raven-client/ayanova/src/views/customers.vue
2019-12-18 19:02:05 +00:00

22 lines
413 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: "address-card",
title: window.$gz.locale.get("ClientList"),
helpUrl: "user-form-customers"
});
}
};
</script>