Files
raven-client/ayanova/src/views/customer-csr.vue
2021-06-16 17:52:58 +00:00

26 lines
560 B
Vue

<template>
<div>
{{ $store.state.customerRights }}
todo: backend customer rights checks in conjunction with this form
<UnderConstruction data-cy="underconstruction" />
</div>
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "$ayiConciergeBell",
title: "CustomerServiceRequestList",
helpUrl: "customer-csr"
});
}
};
</script>