File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 350
350
* If you are using an array of objects, vue-select will look for
351
351
* a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A
352
352
* custom label key can be set with the `label` prop.
353
- * @type {Object }
353
+ * @type {Array }
354
354
*/
355
355
options: {
356
356
type: Array ,
389
389
390
390
/**
391
391
* Equivalent to the `multiple` attribute on a `<select>` input.
392
- * @type {Object }
392
+ * @type {Boolean }
393
393
*/
394
394
multiple: {
395
395
type: Boolean ,
398
398
399
399
/**
400
400
* Equivalent to the `placeholder` attribute on an `<input>`.
401
- * @type {Object }
401
+ * @type {String }
402
402
*/
403
403
placeholder: {
404
404
type: String ,
447
447
/**
448
448
* Callback to generate the label text. If {option}
449
449
* is an object, returns option[this.label] by default.
450
+ * @type {Function}
450
451
* @param {Object || String} option
451
452
* @return {String}
452
453
*/
467
468
* value(s) change. When integrating with Vuex, use this callback to trigger
468
469
* an action, rather than using :value.sync to retreive the selected value.
469
470
* @type {Function}
470
- * @default {null}
471
+ * @param {Object || String} val
471
472
*/
472
473
onChange: {
473
474
type: Function ,
You can’t perform that action at this time.
0 commit comments