how it's possible to change the object like this:
data() .... emojiList: [];
methods: {
//Generated by JSON file
//{"sweat_smile":"😅","laughing":"😆","satisfied":"😆","innocent":"😇","smiling_imp":"😈","wink":"😉"};
var emoji = emoji.emoji;
this.emojiList = emoji;
}
but when I render only get the value, I'd like to make a new array with the previews, where I can set
{"name":"smile", "icon":"😅"}
can anybody understand me?