Use the controls below to adjust the props used - by the vue-select components.
-The API provides - more props than are shown here, these are some - commonly adjusted settings.
++ Use the controls below to adjust the props used by the vue-select + components. +
++ The API provides more props than are shown here, these are some + commonly adjusted settings. +
:multiple="{{ configuration.multiple ? 'true' : 'false' }}"
+
+ :multiple="{{ configuration.multiple ? 'true' : 'false' }}"
:disabled="{{ configuration.disabled ? 'true' : 'false' }}"
+
+ :disabled="{{ configuration.disabled ? 'true' : 'false' }}"
:clearable="{{ configuration.clearable ? 'true' : 'false' }}"
+
+ :clearable="{{ configuration.clearable ? 'true' : 'false' }}"
:searchable="{{ configuration.searchable ? 'true' : 'false' }}"
+
+ :searchable="{{
+ configuration.searchable ? 'true' : 'false'
+ }}"
:filterable="{{ configuration.searchable ? 'true' : 'false' }}"
+
+ :filterable="{{
+ configuration.searchable ? 'true' : 'false'
+ }}"
:taggable="{{ configuration.taggable ? 'true' : 'false' }}"
+
+ :taggable="{{ configuration.taggable ? 'true' : 'false' }}"
:no-drop="{{ configuration.noDrop ? 'true' : 'false' }}"
:push-tags="{{ configuration.pushTags ? 'true' : 'false' }}"
+
+ :push-tags="{{ configuration.pushTags ? 'true' : 'false' }}"
:select-on-tab="{{ configuration.selectOnTab ? 'true' : 'false' }}"
+
+ :select-on-tab="{{
+ configuration.selectOnTab ? 'true' : 'false'
+ }}"
:close-on-select="{{ configuration.closeOnSelect ? 'true' : 'false' }}"
+
+ :close-on-select="{{
+ configuration.closeOnSelect ? 'true' : 'false'
+ }}"
dir="rtl"
dir="ltr"