2

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

Clinton Green
  • 9,697
  • 21
  • 68
  • 103

4 Answers4

2

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

Clinton Green
  • 9,697
  • 21
  • 68
  • 103
  • Does not work with Vue 2.0 but they have a beta version that should work. – Clinton Green Nov 16 '16 at 22:34
  • This one seems to be the best option, and it has a beta that works with Vue 2.0. Read the documentation if implementing for Vue 2.0 because a few of the option names have changed so you will need to update the examples before they will work in Vue 2.0 – Clinton Green Nov 23 '16 at 22:21
1

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

Saurabh
  • 71,488
  • 40
  • 181
  • 244
0

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

Looks very similar to vue-multiselect.

Clinton Green
  • 9,697
  • 21
  • 68
  • 103
  • You can use vue-select with Vue 2.0+. See Install in the readme: https://github.com/sagalbot/vue-select#install – Sean O Sep 18 '17 at 15:42
0

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/vue-multiselect@2.1.0"></script>
<link rel="stylesheet" href="https://unpkg.com/vue-multiselect@2.1.0/dist/vue-multiselect.min.css">

p8ul
  • 2,212
  • 19
  • 19