Files
raven-client/ayanova/src/views/svc-schedule.vue
2019-12-20 19:56:44 +00:00

22 lines
409 B
Vue

<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "calendar-alt",
title: window.$gz.locale.get("Schedule"),
helpUrl: "form-svc-schedule"
});
}
};
</script>