Remove panel switcher, add rudimentary drawer

This commit is contained in:
shpuld 2018-12-15 19:13:01 +02:00
parent eaf065c751
commit bd2ed617a7
4 changed files with 161 additions and 12 deletions

View file

@ -0,0 +1,13 @@
const SideDrawer = {
props: [ 'activatePanel', 'closed' ],
computed: {
currentUser () {
return this.$store.state.users.currentUser
},
chat () {
return this.$store.state.chat.channel
}
}
}
export default SideDrawer