mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-01-22 04:06:06 +01:00
6c2941dba0
I still have to think about how to integrate them in the state system...
9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
const NavPanel = {
|
|
computed: {
|
|
currentUser () {
|
|
return this.$store.state.users.currentUser
|
|
}
|
|
}
|
|
}
|
|
|
|
export default NavPanel
|