24 lines
431 B
Vue
24 lines
431 B
Vue
<template>
|
|
<div>
|
|
<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: "$ayiCalendarAlt",
|
|
title: "Schedule",
|
|
helpUrl: "svc-schedule"
|
|
});
|
|
}
|
|
};
|
|
</script>
|