diff --git a/src/components/multiselect/MultiSelect.vue b/src/components/multiselect/MultiSelect.vue index 4c9005543..e1be1b52b 100644 --- a/src/components/multiselect/MultiSelect.vue +++ b/src/components/multiselect/MultiSelect.vue @@ -60,7 +60,9 @@ export default { props: { value: null, options: Array, - optionLabel: null, + optionLabel: null, + optionValue: null, + optionDisabled: null, scrollHeight: { type: String, default: '200px' @@ -70,8 +72,6 @@ export default { filter: Boolean, tabindex: String, dataKey: null, - optionValue: null, - optionDisabled: null, filterPlaceholder: String }, data() { diff --git a/src/views/dropdown/DropdownDoc.vue b/src/views/dropdown/DropdownDoc.vue index 10372c1cb..ff93acfe1 100644 --- a/src/views/dropdown/DropdownDoc.vue +++ b/src/views/dropdown/DropdownDoc.vue @@ -39,7 +39,7 @@ data() {

Custom Content

-

Label of an option is used as the display text of an item by default, for custom content support define an item template that gets the option instance as a parameter and returns the content.

+

Label of an option is used as the display text of an item by default, for custom content support define an option template that gets the option instance as a parameter.