This commit is contained in:
2020-07-07 23:43:18 +00:00
parent ca3fb50058
commit e3fe14acc9
4 changed files with 60 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
<template>
<div>
<h1>New notification count: {{ newNotificationCount() }}</h1>
<UnderConstruction />
</div>
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-bell",
title: "Notifications",
helpUrl: "form-home-notifications"
});
},
methods: {
newNotificationCount() {
return this.$store.state.newNotificationCount;
}
}
};
</script>