Files
raven-client/ayanova/src/views/svc-schedule.vue
2020-10-19 22:26:01 +00:00

22 lines
440 B
Vue

<template>
<UnderConstruction :data-cy="!!$ay.dev ? 'underconstruction' : false" />
</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: "form-svc-schedule"
});
}
};
</script>