npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2025 โ€“ย Pkg Stats / Ryan Hefner

vue-3-tailwind-searchable-multiselect

v1.1.1

Published

๐Ÿ“ฆ Version Update: Now with Built-in Tailwind Styling โ€“ No Extra Imports Needed!

Readme

Vue Tailwind Searchable MultiSelect -

๐Ÿ“ฆ Version Update: Now with Built-in Tailwind Styling โ€“ No Extra Imports Needed!

A Vue 3 component for a beautiful, searchable, and multi-select dropdown, styled with Tailwind CSS. Easily tag and filter your selections with a responsive UI and minimal setup.


Vue Tailwind multi-select dropdown with search functionality

โœจ Features

  • โœ… Vue 3 compatible
  • ๐ŸŽฏ Built-in search filtering
  • ๐Ÿท๏ธ Displays selected items as tags
  • ๐Ÿ“ฆ Minimal dependencies
  • ๐ŸŽจ Tailwind CSS styled (auto-includes styles)
  • ๐Ÿง  Keyboard & click-outside support

๐Ÿ“ฆ Installation


npm install vue-3-tailwind-searchable-multiselect
๐Ÿš€ Usage
1. Import the component and CSS

import MultiSelectDropdown from 'vue-3-tailwind-searchable-multiselect';

2. Register the component
js
Copy
Edit
export default {
  components: {
    MultiSelectDropdown
  }
}
3. Use it in your template

<MultiSelectDropdown v-model="selectedItems" 
:drop-down-data="dropDownData" 
placeholder="Choose from the list..." />

๐Ÿ“‹ Props
Prop	Type	Required	Description
dropDownData	Array	โœ… Yes	Array of objects like { id, name, value } to display

๐Ÿ“Œ Example Data Format
js
Copy
Edit
dropDownData: [
  { id: 1, name: 'JohnDoe', value: 'JohnDoe' },
  { id: 2, name: 'JaneSmith', value: 'JaneSmith' },
  { id: 3, name: 'FooBar', value: 'FooBar' }
]
๐ŸŽจ Customization
The component is styled using Tailwind CSS. You can:

Override styles using custom classes

Use Tailwindโ€™s utility-first approach to theme components globally

โœ… Compatibility
Vue 3

Tailwind CSS v3+ or bundled styles included (no Tailwind setup required)

๐Ÿ“œ License
MIT

๐Ÿ™Œ Author
Made with โค๏ธ by Your Name

๐ŸŒ NPM
๐Ÿ“ฆ vue-3-tailwind-searchable-multiselect

yaml
Copy
Edit

---