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
|