Files
raven-client/ayanova/src/views/ops-notification-settings.vue
2019-12-20 21:02:24 +00:00

22 lines
430 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("NotificationSettings"),
helpUrl: "form-ops-notification-settings"
});
}
};
</script>