I'm using NuxtJs v2.14 with vuesax v4.0.1-alpha.25 by npm. While I'm using these section code to create my loop for v-select, this component doesn't show me selected label after choosing one of created options.
I tried and tested it by mobile devices and Win OS or every browsers like FireFox, Opera, Safari and Chrome but It hadn't worked for me.
here is my codes:
<vs-select placeholder="choose your brand" v-model="carBrand">
<vs-option v-for="(item, index) in brands" :key="index" :label="item.name" :value="item.id">
{{ item.name }}
</vs-option>
</vs-select>