Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/Multiselect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
:name="name"
:id="id"
type="text"
autocomplete="off"
:autocomplete="autocomplete"
spellcheck="false"
:placeholder="placeholder"
:style="inputStyle"
Expand Down Expand Up @@ -198,6 +198,15 @@ export default {
type: String,
default: 'Selected'
},
/**
* Binding for input autocomplete property
* @default 'off'
* @type {String}
*/
autocomplete: {
type: String,
default: 'off'
},
/**
* String to show when pointing to an already selected option
* @default 'Press enter to remove'
Expand Down