This commit is contained in:
2020-12-21 15:47:05 +00:00
parent 9d2d3b036a
commit cacd38efcd
4 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<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: "$ayiStickyNote",
title: "Reminder",
helpUrl: "form-ay-reminder"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<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>