select-typeahead-vue

0.0.6 • Public • Published

Searchable-Select-Dropdown

A Vue Component to convert the native html select-dropdown to searchable dropdown (something similar to the datalist html tag which isn't supported in most of the browsers)

Installation

If you are using webpack/browserify

import searchableDropdown from 'select-typeahead';
import 'select-typeahead/selectToSearch.css';

new Vue({
  ...
  components: {
    ...
    'searchable-dropdown': searchableDropdown,
    ...
  },
  ...
})

If you are not using webpack/browserify

Add selectToSearch-es5.js and selectToSearch.css to your html file and use the component.

Usage

Pass the select component's id and modelValue (containing text and value keys) as a prop.

<searchable-dropdown replace-with="#native-select-box" :selected-value.sync='selectedData'></searchable-dropdown>

Screenshots

Alt text

Native HTML Select Tag


select usage

VueJS Component


usage usage

Package Sidebar

Install

npm i select-typeahead-vue

Weekly Downloads

5

Version

0.0.6

License

ISC

Last publish

Collaborators

  • rahulgaba