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);
- [Vuejs]-How can I save data from my calculator with cookie in vue?
- [Vuejs]-Vue.js SPA redirecting to index.html with .htaccess does not work for every Page
Source:stackexchange.com