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