Is it possible to change values in the frontend to api?
For example, I have an api that returns this to me:
"data":[
"nome": "sp",
"nome": "mg",
"nome": "rj"
]
Then, for example, I make a simple request of it using GET
this.axios.get("http://localhost/api/exemplo/").then(response => {
this.items = response.data;
});
How can I change these values so that they are displayed in a more "pleasant" way for the user? This without having to change anything in the bank, and displaying it in a v-for.
For example: São Paulo, Minas Gerais, Rio de Janeiro