vue-web-upload
v1.0.1
Published
A Vue.js project
Downloads
22
Readme
vue-webuploader
A Vue.js project
Build Setup
# 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