This commit is contained in:
j3d1 2023-05-31 20:43:14 +02:00
parent 7e8f984ee2
commit a1fd49c5d1
11 changed files with 406 additions and 214 deletions

View file

@ -6,7 +6,7 @@
<a class="sidebar-toggle d-flex">
<i class="hamburger align-self-center"></i>
</a>
<SearchBox/>
<SearchBox v-if="!hideSearch"/>
<div class="navbar-collapse collapse">
<ul class="navbar-nav navbar-align">
<Notifications :notifications="notifications"/>
@ -42,7 +42,14 @@ export default {
},
computed: {
...mapState(['messages']),
...mapGetters(['notifications'])
...mapGetters(['notifications']),
},
props: {
hideSearch: {
type: Boolean,
required: false,
default: false
}
},
async mounted() {
}