Files
raven-client/ayanova/src/views/customer-csr-list.vue
2020-05-09 00:29:55 +00:00

22 lines
417 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-child",
title: this.$ay.t("CustomerServiceRequestList"),
helpUrl: "form-customer-csr-list"
});
}
};
</script>