Files
raven-client/ayanova/src/views/home-dashboard.vue
2020-03-06 20:08:50 +00:00

32 lines
641 B
Vue

<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
/**
*
*
* <div>
MRU + depending on role: new workorder, new client, personal workorder
list if scheduleable, or if ops then whatever ops needs or admin whatever
they need etc
</div>
*
*
*/
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "tachometer-alt",
title: window.$gz.translation.get("Dashboard"),
helpUrl: "form-home-dashboard"
});
}
};
</script>