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