Files
raven-client/ayanova/src/views/home-dashboard.vue
2020-07-01 21:45:13 +00:00

37 lines
727 B
Vue

<template>
<div>
<h1>
//DASHBOARD - KPI / METRICS / CHARTS AND STUFF APPROPRIATE TO ROLE
</h1>
<UnderConstruction />
</div>
</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: "fa-tachometer-alt",
title: "Dashboard",
helpUrl: "form-home-dashboard"
});
}
};
</script>