This commit is contained in:
2019-12-20 21:10:54 +00:00
parent 59a4b518bc
commit 64e7af3ac6
3 changed files with 51 additions and 76 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "bullhorn",
title: window.$gz.locale.get("NotifySubscriptionList"),
helpUrl: "form-home-notify-subscriptions"
});
}
};
</script>