Files
raven-client/ayanova/src/views/cust-customers.vue
2020-10-19 22:26:01 +00:00

22 lines
446 B
Vue

<template>
<UnderConstruction :data-cy="!!$ay.dev ? 'underconstruction' : false" />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "$ayiAddressCard",
title: "CustomerList",
helpUrl: "form-cust-customers"
});
}
};
</script>