Files
raven-client/ayanova/src/views/home-reviews.vue
2020-12-21 15:47:05 +00:00

22 lines
421 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: "$ayiCalendarCheck",
title: "ReviewList",
helpUrl: "form-home-reviews"
});
}
};
</script>