refine performance code layout
This commit is contained in:
@@ -21,5 +21,19 @@ export default defineStore('conformanceDataStore', {
|
||||
setConformanceData(userInputObj){
|
||||
this.dataToSave = {...userInputObj};
|
||||
},
|
||||
/**
|
||||
* Set the starting time of time range to be saved later
|
||||
* @param {string} startStr
|
||||
*/
|
||||
setConformanceDataStart(startStr){
|
||||
this.dataToSave.start = startStr;
|
||||
},
|
||||
/**
|
||||
* Set the ending time of time range to be saved later
|
||||
* @param {string} startStr
|
||||
*/
|
||||
setConformanceDataEnd(endStr){
|
||||
this.dataToSave.end = endStr;
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user