Files
raven-client/ayanova/src/views/home-schedule.vue

27 lines
480 B
Vue

<template>
<UnderConstruction data-cy="underconstruction" />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "$ayiCalendarDay",
title: "Schedule",
helpUrl: "home-schedule"
});
}
};
/*
TODO: copy dashboard menu links to own workorders for here
*/
</script>