We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I would populate my options array with results from an HTTP request but I ran into an error when I added the property "multiple". The HTML select:
<v-select v-model="select.value" :options="select.options" options-value="val" multiple name="animals[]" placeholder="Using placeholder" search justified required clear-button ></v-select>
The JS which is in an HTTP response callbacl:
let i = 0; this.select.options = []; while (i < 10) { this.select.options.push({ val: i, label: 'toto', }); i += 1; }
The error is <select multiple v-model="val"> expects an Array value for its binding, but got Null.
<select multiple v-model="val"> expects an Array value for its binding, but got Null
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I would populate my options array with results from an HTTP request but I ran into an error when I added the property "multiple".
The HTML select:
The JS which is in an HTTP response callbacl:
The error is
<select multiple v-model="val"> expects an Array value for its binding, but got Null
.Thanks!
The text was updated successfully, but these errors were encountered: