Skip to content

Taginput

A simple tag input field that can have autocomplete functionality

Examples

Base

Show code

Autocomplete

Show code

Custom selected

Show code

Limits

Show code

Disabled

Show code

Variants

Show code

Class props

'Classes applied to the element'

Taginput component

A simple tag input field that can have autocomplete functionality

html
<o-taginput></o-taginput>

Props

Prop nameDescriptionTypeValuesDefault
allowDuplicates-
From config:
taginput: {
  allowDuplicates: false
}
allowNew-
From config:
taginput: {
  allowNew: false
}
ariaCloseLabel-
From config:
taginput: {
  ariaCloseLabel: undefined
}
autocomplete-
From config:
taginput: {
  autocomplete: "off"
}
checkScroll-
From config:
taginput: {
  checkScroll: false
}
closable-
From config:
taginput: {
  closable: true
}
closeIcon-
From config:
taginput: {
  closeIcon: "close"
}
confirmKeys-
From config:
taginput: {
  confirmKeys: [",","Tab","Enter"]
}
counter-
From config:
taginput: {
  counter: true
}
createItem-Default function (see source code)
customValidity-
disabled-false
expanded-false
filter-
icon-
From config:
taginput: {
  icon: undefined
}
iconPack-
From config:
taginput: {
  iconPack: undefined
}
input-""
keepFirst-false
keepOpen-
From config:
taginput: {
  keepOpen: false
}
maxitems-
maxlength-
v-model-
openOnFocus-false
options-
override-
placeholder-
removeOnKeys-
From config:
taginput: {
  removeOnKeys: ["Backspace"]
}
separators-
From config:
taginput: {
  separators: [","]
}
size-
From config:
taginput: {
  size: undefined
}
teleport-
From config:
taginput: {
  teleport: false
}
useHtml5Validation-
From config:
{
  useHtml5Validation: true
}
validateItem-Default function (see source code)
variant-
From config:
taginput: {
  variant: undefined
}

Events

Event namePropertiesDescription
scroll-startthe list inside the dropdown reached the start
scroll-endthe list inside the dropdown reached it's end
icon-clickevent Event - native eventon icon click event
icon-right-clickevent Event - native eventon icon right click event
update:modelValuevalue string[] | object[] - updated modelValue propmodelValue prop two-way binding
update:inputvalue string - updated input propinput prop two-way binding
inputvalue string - input valueon input change event
addvalue string | object - added itemnew item got added
removevalue string | object - removed itemitem got removed
focusevent Event - native eventon input focus event
blurevent Event - native eventon input blur event
invalidevent Event - native eventon input invalid event

Slots

NameDescriptionBindings
selectedOverride selected itemsitems (string, object)[] - selected items
options object[] - selected options
headerDefine an additional header
defaultOverride the select optionoption object - option object
index number - option index
value unknown - option value
emptyDefine content for empty state
footerDefine an additional footer
counterOverride the counteritems number - items count
total number - total count

Sass variables

Current theme ➜ Oruga

SASS VariableDefault
$taginput-counter-font-size0.75rem
$taginput-counter-margin0.25rem 0 0 0.5rem
$taginput-item-background-colorvar(--#{$prefix}primary)
$taginput-item-colorvar(--#{$prefix}primary-invert)
$taginput-item-border-radiusvar(--#{$prefix}base-border-radius)
$taginput-item-margin0.275em
$taginput-item-padding0 0.75em 0 0.75em
$taginput-margin-icon-to-text0.1875em

See ➜ 📄 Full scss file

Current theme ➜ Bulma

SASS VariableDefault
$taginput-height2em
$taginput-tag-size0.9em

See ➜ 📄 Full scss file

Current theme ➜ Bootstrap

SASS VariableDefault
$taginput-badge-bg$light
$taginput-badge-color$dark
$taginput-badge-font-size0.9em
$taginput-badge-margin0.25em
$taginput-badge-icon-space0.25em
$taginput-counter-margin0.25rem 0 0 0.5rem
$taginput-counter-font-size0.75rem

See ➜ 📄 Full scss file

Released under the MIT License.