# vue-web-upload

> A Vue.js project

Latest version **1.0.1** (published 2018-02-26) · 0 weekly downloads

## Install

```sh
npm install vue-web-upload
pnpm add vue-web-upload
yarn add vue-web-upload
bun add vue-web-upload
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2018-02-26 |
| First published | 2018-02-26 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 6.0.0 |
| Dependencies | 3 |
| Unpacked size | 428.8 KB |
| Known vulnerabilities | 0 (+5 in 2 direct dependencies) |
| Install scripts | no |
| Author | zengqb |
| Maintainers | zengqb |

## Links

- npm: https://www.npmjs.com/package/vue-web-upload
- npm.io page: https://npm.io/package/vue-web-upload

## Dependencies (3)

- [vue](https://npm.io/package/vue.md) ^2.5.2
- [jquery](https://npm.io/package/jquery.md) ^2.2.4
- [vue-router](https://npm.io/package/vue-router.md) ^3.0.1

## Recent versions

- 1.0.1 (latest) — 2018-02-26
- 1.0.0 — 2018-02-26

## README

# vue-webuploader

> A Vue.js project

## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test
```

## Api

成员    |    说明 |       类型              |    默认值
------- | --------| ---------------------|------------
upload_button|上传按钮	|String|--
cdn-url    | 文件上传地址 | String | --
form-data | 上传需要携带的附加参数	 |Object     | null
accept  | 上传指定的类型     |  Object           | null
key-generator  | 设置key参数|function|function (file) { const currentTime = new Date().getTime();const key = currentTime + "." + file.name;return key;}
progress  | 正在上传中回调方法	     |           function           | --
success   | 上传成功回调方法	     |           function           | --
before| 上传前回调方法	|function|--
error|上传失败回调方法	|function|--
complete|上传完成回调方法，不管成功或者失败|function|--
multiple|是否支持多文件上传|Boolean|false

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