pleroma-fe/src/components/side_drawer/side_drawer.js

14 lines
249 B
JavaScript
Raw Normal View History

const SideDrawer = {
props: [ 'activatePanel', 'closed' ],
computed: {
currentUser () {
return this.$store.state.users.currentUser
},
chat () {
return this.$store.state.chat.channel
}
}
}
export default SideDrawer