Agregado getter para nombre

This commit is contained in:
Alejandro Tasistro 2025-06-13 19:12:36 -03:00
parent af8879eadd
commit 0637b7a208

View file

@ -124,6 +124,9 @@ const getters = {
default:
throw new Error("Url inválida");
}
},
nombre() {
return `${state.grupo_de_compra_elegido}${ getters.urlRol() === 'admin' ? '_admin' : ''}`;
}
};