Files
raven-client/ayanova/src/views/home-notify-subscriptions.vue
2019-12-20 21:10:54 +00:00

22 lines
432 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: "bullhorn",
title: window.$gz.locale.get("NotifySubscriptionList"),
helpUrl: "form-home-notify-subscriptions"
});
}
};
</script>