Files
raven-client/ayanova/src/views/ops-notification-settings.vue
2020-06-03 22:21:52 +00:00

23 lines
446 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: "fa-bullhorn",
title: this.$ay.t("NotificationSettings"),
helpUrl: "form-ops-notification-settings",
hideSearch: true
});
}
};
</script>