Skip to content
Snippets Groups Projects
Commit 4034b016 authored by Jens Christian Aanestad's avatar Jens Christian Aanestad
Browse files

feat/Created new configuration store

parent 36caa8f3
No related branches found
No related tags found
1 merge request!25Refactor/configuration
import { defineStore } from 'pinia'
export const useConfigurationStore = defineStore('ConfigurationStore', {
state: () => ({
commitment: '',
experience: '',
challenges: []
}),
actions: {
setCommitment(commitment: string) {
this.commitment = commitment
},
setExperience(experience: string) {
this.experience = experience
},
setChallenges(challenges: Array<string>) {
this.challenges = challenges
},
resetConfiguration() {
this.commitment = ''
this.experience = ''
this.challenges = []
}
},
getters: {
getCommitment(): string {
return this.commitment
},
getExperience(): string {
return this.experience
},
getChallenges(): string {
return this.challenges
}
},
persist: {
enabled: true,
}
});
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