# @tomoeed/vue-dropdown

> A dropdown menu component for Vue3

Latest version **1.0.0** (published 2021-02-15) · Apache-2.0 license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @tomoeed/vue-dropdown
pnpm add @tomoeed/vue-dropdown
yarn add @tomoeed/vue-dropdown
bun add @tomoeed/vue-dropdown
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-02-15 |
| First published | 2021-02-15 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 221.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Lu Mengyao |
| Maintainers | tomoeed |
| Keywords | vue, dropdown, menu |

## Links

- npm: https://www.npmjs.com/package/@tomoeed/vue-dropdown
- Repository: https://github.com/meshareL/vue-dropdown
- Issues: https://github.com/meshareL/vue-dropdown/issues
- npm.io page: https://npm.io/package/@tomoeed/vue-dropdown

## Recent versions

- 1.0.0 (latest) — 2021-02-15

## README

# vue-dropdown
下拉菜单组件 **Vue3**

## 安装
```shell
npm install @tomoeed/vue-dropdown --save
```

## 使用
```js
import {createApp} from 'vue';
import VueDropdown, {Dropdown, Menu, Menuitem} from '@tomoeed/vue-dropdown';

createApp({}).use(vueDropdown, {
    dropdown: 'j-dropdown',
    menu: 'j-dropdown-menu',
    menuitem: 'j-dropdown-menuitem'
});

// or
createApp({}).component('j-dropdown', Dropdown);
createApp({}).component('j-dropdown-menu', Menu);
createApp({}).component('j-dropdown-menuitem', Menuitem);
```

## 组件
### [j-dropdown](https://github.com/meshareL/vue-dropdown/blob/master/doc/dropdown.md)
### [j-dropdown-menu](https://github.com/meshareL/vue-dropdown/blob/master/doc/menu.md)
### [j-dropdown-menuitem](https://github.com/meshareL/vue-dropdown/blob/master/doc/menuitem.md)

## License
[Apache-2.0](https://github.com/meshareL/vue-dropdown/blob/master/LICENSE)

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