0
Let’s say I have such an object:
{
"parametros": {
"carteira": "RG",
"taxaboleto": "0.00",
"multa": "0.00",
"juros": "0.00"
}
}
Is it possible that I can extract the name of the object item? For example, the "wallet" item: "RG", if I print on the screen as {{parametros.carteira}}
(in Vue) I can print the value, but what if I need the name 'carteira'
to be printed? How do I extract?
Take into account that I do not know which object is coming, it may be that the dynamic items that will appear...
It has to be in Vue?
– Sam