2016-11-07 06:10:20 +11:00
|
|
|
const NavPanel = {
|
2016-11-27 05:29:01 +11:00
|
|
|
computed: {
|
2016-11-27 07:09:41 +11:00
|
|
|
currentUser () {
|
2016-11-27 05:29:01 +11:00
|
|
|
return this.$store.state.users.currentUser
|
2017-12-06 00:20:34 +11:00
|
|
|
},
|
|
|
|
chat () {
|
|
|
|
return this.$store.state.chat.channel
|
2016-11-27 05:29:01 +11:00
|
|
|
}
|
|
|
|
}
|
2016-11-07 06:10:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|