
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
vue3-autocomplete
Advanced tools
Using npm
npm install vue3-autocomplete
Using yarn
yarn add vue3-autocomplete
Load the component globally...
import App from './App.vue' // Or whatever you need
import Autocomplete from 'vue3-autocomplete'
// Optional: Import default CSS
import 'vue3-autocomplete/dist/vue3-autocomplete.css'
let app = createApp(App)
app.component('Autocomplete', Autocomplete)
app.mount('#app')
... Or locally into your component.
import Autocomplete from 'vue3-autocomplete'
// Optional: Import default CSS
import 'vue3-autocomplete/dist/vue3-autocomplete.css'
export default {
name: 'YourComponentName',
components: {
Autocomplete
}
}
Use the component into your template.
<template>
<div>
<Autocomplete
@input="getItems"
:results="items"
></Autocomplete>
</div>
</template>
| Property | Type | Description | Required | Default |
|---|---|---|---|---|
| results | Array | Items to display in the results list | No | [] |
| display-item | Function | Describes how to render each item in results | No | return item.name |
| debounce | Integer | Time to wait before each call to the @input event | No | 0 |
| max | Integer | Define a render limit for results items | No | 10 |
| placeholder | String | Default input placeholder | No | '' |
| use-html-for-results | Boolean | If true, displayItem method will display results as html | No | false |
| input-class | Array | Override input default classes | No | [] |
| results-container-class | Array | Override results container default classes | No | [] |
| results-item-class | Array | Override results item default classes | No | [] |
| Event | Description |
|---|---|
| @input | Triggered on user input, should update the local results list |
| @onSelect | Triggered when user click on a list item and return the selected item |
MIT
FAQs
* [Installation](#installation) * [Usage](#usage)
We found that vue3-autocomplete demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.