[Vuejs]-V-for list diseapears after a second

0👍

I think that problem is in this string:

list.value = await getList(platform, abi);

You try to set the value field of list, but arrays do not have this field;
Instead, you should use this:

list = await getList(platform, abi);

Leave a comment