akkoma-fe/src/components/nav_panel/nav_panel.js

13 lines
205 B
JavaScript
Raw Normal View History

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