Level 104
The author suggests to use Vuelidate rather than HTML validation since their component is not a native HTML element.
https://github.com/iendeavor/vue-next-select/blob/main/examples/src/views/Vuelidate.vue
I want to make it required select list
<vue-select v-on:change="form.inputno = $event.target.value" v-model="form.input[index]" :options="trains" clear-on-select searchable close-on-select label-by="inputno" class="text-left h-10 sinput" search-placeholder="Search Input No" placeholder="Input No" track-by="inputno"></vue-select>
The author suggests to use Vuelidate rather than HTML validation since their component is not a native HTML element.
https://github.com/iendeavor/vue-next-select/blob/main/examples/src/views/Vuelidate.vue
Please or to participate in this conversation.