Skip to content
Snippets Groups Projects
Commit c20a590a authored by Endrizzi, Marco (UG - Comp Sci & Elec Eng)'s avatar Endrizzi, Marco (UG - Comp Sci & Elec Eng)
Browse files

Added getters for use with watchers

parent bc09cf47
No related branches found
No related tags found
No related merge requests found
...@@ -434,9 +434,19 @@ const getters = { ...@@ -434,9 +434,19 @@ const getters = {
userDetailsKeys: state => { userDetailsKeys: state => {
return Object.keys(state.userDetails) return Object.keys(state.userDetails)
}, },
center: state => {
return state.center
},
latestUserChange: state => { latestUserChange: state => {
return state.latestUserChange return state.latestUserChange
} },
latestSignalKey: state => {
return state.latestSignalChange
},
latestEventKey: state => {
return state.latestEventChange
},
} }
export default { export default {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment