# vue-select-style

> Everything you wish the HTML element could do, wrapped up into a lightweight, extensible Vue component.

Latest version **0.1.4** (published 2023-09-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-select-style
pnpm add vue-select-style
yarn add vue-select-style
bun add vue-select-style
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2023-09-14 |
| First published | 2023-09-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 56.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Therence FERRON |
| Maintainers | littletherence |

## Links

- npm: https://www.npmjs.com/package/vue-select-style
- Repository: https://github.com/Renssethe/vue-select-style
- Issues: https://github.com/Renssethe/vue-select-style/issues
- npm.io page: https://npm.io/package/vue-select-style

## Recent versions

- 0.1.4 (latest) — 2023-09-14
- 0.1.2 — 2023-09-12
- 0.1.1 — 2023-09-11
- 0.1.0 — 2023-09-11

## README

# vue-select-style ![Current Release](https://img.shields.io/github/release/Renssethe/vue-select-style.svg?style=flat-square) ![Release Date](https://img.shields.io/github/release-date/Renssethe/vue-select-style?style=flat-square) ![Bundle Size](https://flat.badgen.net/bundlephobia/min/vue-select) ![Monthly Downloads](https://img.shields.io/npm/dm/vue-select-style.svg?style=flat-square) [![Coverage Status](https://coveralls.io/repos/github/sagalbot/vue-select/badge.svg?branch=master)](https://coveralls.io/github/sagalbot/vue-select?branch=master) ![MIT License](https://img.shields.io/github/license/Renssethe/vue-select-style.svg?style=flat-square)

> **Everything you wish the HTML `<select>` element could do, wrapped up into a lightweight, zero
> dependency, extensible Vue component.**

Vue Select is a feature rich select/dropdown/typeahead component. It provides a default
template that fits most use cases for a filterable select dropdown. The component is designed to be as
lightweight as possible, while maintaining high standards for accessibility,
developer experience, and customization.

- Tagging
- Filtering / Searching
- Vuex Support
- AJAX Support
- SSR Support
- Accessible
- ~20kb Total / ~5kb CSS / ~15kb JS
- Select Single/Multiple Options
- Customizable with slots and SCSS variables
- Zero dependencies

## Install

```bash
yarn add vue-select-style

# or use npm

npm install vue-select-style
```

Then, import and register the component:

```js
import Vue from "vue";
import vSelect from "vue-select-style";

Vue.component("v-select", vSelect);
```

The component itself does not include any CSS. You'll need to include it separately:

```js
import "vue-select-style/dist/vue-select.css";
```

Alternatively, you can import the scss for complete control of the component styles:

```scss
@import "vue-select-style/src/scss/vue-select.scss";
```

## License

[MIT](https://github.com/sagalbot/vue-select/blob/master/LICENSE.md)

---
_Source: https://npm.io/package/vue-select-style · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
