feat: New notification panel for unread notifications (#4061)

Fixes: #4052
This commit is contained in:
Sivin Varghese
2022-03-25 19:02:45 +05:30
committed by GitHub
parent ff881fcad9
commit 48389d69d8
9 changed files with 606 additions and 21 deletions

View File

@@ -16,7 +16,7 @@
/>
</nav>
<div class="menu vertical user-menu">
<notification-bell />
<notification-bell @open-notification-panel="openNotificationPanel" />
<agent-details @toggle-menu="toggleOptions" />
<options-menu
:show="showOptionsMenu"
@@ -83,6 +83,9 @@ export default {
toggleSupportChatWindow() {
window.$chatwoot.toggle();
},
openNotificationPanel() {
this.$emit('open-notification-panel');
},
},
};
</script>