Skip to content
Advertisement

Vue-Select is Unable to Create Options from an Array

I am a beginner who is currently learning Vue and Nuxt JS and developing a simple web application with Nuxt JS. Currently, I am trying to make a Vue Select option where I pass an array and I have the options be the elements in the array. This is my current index.vue (TextBox and DropDown are components I have defined):

JavaScript

When I run this code, it compiles successfully, but then the console gives me the following warning:

JavaScript

And the localhost view displays:

JavaScript

I have tried changing things like moving the array under created() or mounted() instead of data() and making data a list of variables instead of a function that returns variables, but no matter what I try, the Vue-select is still unable to access the array of countries, so I’m not sure what is happening.

Advertisement

Answer

v-for doesn’t take a semicolon before the directive. Remove that and you’ll get past that error.

JavaScript

You should also add a unique :key to any element in a v-for iteration. And for being-explicit’s sake, you can add a value prop to indicate which field will be used when selected.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement