0👍
I don’t know Vue, but if languages
is already an array, why do you not pass directly to ref() ?
const allLangauges = ref(languages);
Then, when you iterate on language, you should have an object and not an array because it’s looks like this (for me, if I understand):
[[{object}, {object}, ...]]
- [Vuejs]-How does one reference the values of a ref of nested objects in Vue JS
- [Vuejs]-VueJS Question about architecture and distribution of files in VueJS project
0👍
Is this what you looking for display? do you forget to return the data? try my sample here >>> Sample
- [Vuejs]-Is it possible to setup vue-chartjs 3.5.1 with momentjs for formatting dates in chart.js
- [Vuejs]-Global variables and functions with Quasar
Source:stackexchange.com