blob: bf9df7530467d548fab81bb840bfaa795e846732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const SideDrawer = {
props: [ 'activatePanel', 'closed' ],
computed: {
currentUser () {
return this.$store.state.users.currentUser
},
chat () {
return this.$store.state.chat.channel
}
}
}
export default SideDrawer
|