Vuex: add getters for project info

This commit is contained in:
D. Berge
2023-08-23 19:31:22 +02:00
parent 62f90846a8
commit 04e0482f60

View File

@@ -0,0 +1,14 @@
function projectId (state) {
return state.projectId;
}
function projectName (state) {
return state.projectName;
}
function projectSchema (state) {
return state.projectSchema;
}
export default { projectId, projectName, projectSchema };