What is the ideal location for storing constants? I want to save key-value pairs to quickly swap IDs with corresponding names.
For example:
const roleNames = {
1: 'Admin',
2: 'Moderator'
3: 'User'
}
Would using vuex be a suitable choice for this task? If not, can you suggest a more efficient solution?