
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
vue-suggestion
Advanced tools
Suggestion list input for Vue
Install the plugin:
npm install vue-suggestion
Add the plugin into your app:
import Vue from 'vue';
import VueSuggestion from 'vue-suggestion';
Vue.use(VueSuggestion);
Use the vue-suggestion
component:
<template>
<vue-suggestion
:items="items"
v-model="item"
:setLabel="setLabel"
:itemTemplate="itemTemplate"
@changed="inputChange"
@selected="itemSelected"
>
</vue-suggestion>
</template>
<script>
import itemTemplate from './item-template.vue';
export default {
data() {
return {
item: {},
items: [
{ id: 1, name: 'Golden Retriever' },
{ id: 2, name: 'Cat' },
{ id: 3, name: 'Squirrel' },
],
itemTemplate,
};
},
methods: {
itemSelected(item) {
this.item = item;
},
setLabel(item) {
return item.name;
},
inputChange(text) {
// your search method
this.items = this.items.filter((item) => item.name.indexOf(text) > -1);
// now `items` will be showed in the suggestion list
},
},
};
</script>
ItemTemplate example:
<template>
<div>
<b>#{{ item.id }}</b>
<span>{{ item.name }}</span>
</div>
</template>
<script>
export default {
props: {
item: { required: true },
},
};
</script>
npm install vue-suggestion
Install the plugin into Vue:
import Vue from 'vue';
import VueSuggestion from 'vue-suggestion';
Vue.use(VueSuggestion, [(globalOptions = {})]); // Define default global options here (optional)
View all available options in Props.
Or use the component directly:
<!-- your-component.vue-->
<template>
<vue-suggestion v-model="value"></vue-suggestion>
</template>
<!-- some-sample-css-as-example-for-your-dropdown-autocomplete -->
<style scope>
.vue-suggestion .vs__list {
width: 100%;
text-align: left;
border: none;
border-top: none;
max-height: 400px;
overflow-y: auto;
border-bottom: 1px solid #023d7b;
position: relative;
}
.vue-suggestion .vs__list .vs__list-item {
background-color: #fff;
padding: 10px;
border-left: 1px solid #023d7b;
border-right: 1px solid #023d7b;
}
.vue-suggestion .vs__list .vs__list-item:last-child {
border-bottom: none;
}
.vue-suggestion .vs__list .vs__list-item:hover {
background-color: #eee !important;
}
.vue-suggestion .vs__list,
.vue-suggestion .vs__loading {
position: absolute;
}
.vue-suggestion .vs__list .vs__list-item {
cursor: pointer;
}
.vue-suggestion .vs__list .vs__list-item.vs__item-active {
background-color: #f3f6fa;
}
</style>
<script>
import { VueSuggestion } from 'vue-suggestion';
export default {
components: {
VueSuggestion,
},
};
</script>
Include vue-suggestion in the page.
<script src="https://unpkg.com/vue-suggestion"></script>
If Vue is detected in the Page, the plugin is installed automatically.
Manually install the plugin into Vue:
Vue.use(VueSuggestion);
Or use the component directly:
Vue.component('vue-suggestion', VueSuggestion.VueSuggestion);
Copyright (c) 2018 Steven Dao. Released under the MIT License.
made with ❤ by Steven.
FAQs
Suggestion list input with Vue
The npm package vue-suggestion receives a total of 607 weekly downloads. As such, vue-suggestion popularity was classified as not popular.
We found that vue-suggestion 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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.