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

26 lines
535 B
Vue

<template>
<div>
{{ $store.state.customerRights }}
todo: backend customer rights check in addition to here
<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: "$ayiTools",
title: "WorkOrderList",
helpUrl: "customer-workorders"
});
}
};
</script>