Clinton Green
Clinton Green

Reputation: 9977

Is there a Vue JS plugin similar to magicSuggest?

I need a plugin to replicate the functionality I've been enjoying using magicSuggest.

I have found many autocomplete plugins for Vue but none that come bundled with tags.

Try any of the examples on this page to see how your selection is saved as a tag in the input.

http://nicolasbize.com/magicsuggest/examples.html

I am after a plugin that will work with Vue js 2.0

Upvotes: 2

Views: 2740

Answers (4)

p8ul
p8ul

Reputation: 2320

Try this vue-multiselect. Its supporting many options like tagging, search, multiple select, single select, asynchronous search, vuex and more.

https://github.com/shentao/vue-multiselect

npm install vue-multiselect --save

<script src="https://unpkg.com/[email protected]"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/vue-multiselect.min.css">

Upvotes: 0

Clinton Green
Clinton Green

Reputation: 9977

Also discovered this one, http://sagalbot.github.io/vue-select/

Looks very similar to vue-multiselect.

Upvotes: 0

Saurabh
Saurabh

Reputation: 73619

You can also check dropdown provided by semantic-ui here, This can be easily integrated with VueJS.

Upvotes: 1

Clinton Green
Clinton Green

Reputation: 9977

I found this gem, looks like a keeper. http://monterail.github.io/vue-multiselect/

Upvotes: 2

Related Questions