mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-24 22:23:04 +01:00
25 lines
535 B
JavaScript
25 lines
535 B
JavaScript
const SideDrawer = {
|
|
props: [ 'activatePanel', 'closed', 'clickoutside', 'logout' ],
|
|
computed: {
|
|
currentUser () {
|
|
return this.$store.state.users.currentUser
|
|
}
|
|
},
|
|
methods: {
|
|
gotoPanel (panel) {
|
|
this.activatePanel(panel)
|
|
this.clickoutside && this.clickoutside()
|
|
},
|
|
clickedOutside () {
|
|
if (typeof this.clickoutside === 'function') {
|
|
this.clickoutside()
|
|
}
|
|
},
|
|
doLogout () {
|
|
this.logout()
|
|
this.gotoPanel('timeline')
|
|
}
|
|
}
|
|
}
|
|
|
|
export default SideDrawer
|