# v-uploader **Repository Path**: TerryZ/v-uploader ## Basic Information - **Project Name**: v-uploader - **Description**: 基于 Vue2 简洁易用,可批量、拖拽的文件上传插件 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: https://terryz.gitee.io/vue/#/upload - **GVP Project**: No ## Statistics - **Stars**: 77 - **Forks**: 17 - **Created**: 2018-09-11 - **Last Updated**: 2024-10-30 ## Categories & Tags **Categories**: vue-extensions **Tags**: None ## README

v-uploader



v-uploader

基于 Vue2 简洁易用,可批量、拖拽的文件上传插件






## Demo、文档 请浏览 - [English site](https://terryz.github.io/vue/#/upload) - [国内站点](https://terryz.gitee.io/vue/#/upload)

## Vue plugin series | Plugin | Status | Description | | :---------------- | :-- | :-- | | [v-page](https://github.com/TerryZ/v-page) | [![npm version](https://img.shields.io/npm/v/v-page.svg)](https://www.npmjs.com/package/v-page) | A simple pagination bar, including length Menu, i18n support | | [v-dialogs](https://github.com/TerryZ/v-dialogs) | [![npm version](https://img.shields.io/npm/v/v-dialogs.svg)](https://www.npmjs.com/package/v-dialogs) | A simple and powerful dialog, including Modal, Alert, Mask and Toast modes | | [v-tablegrid](https://github.com/TerryZ/v-tablegrid) | [![npm version](https://img.shields.io/npm/v/v-tablegrid.svg)](https://www.npmjs.com/package/v-tablegrid) | A simpler to use and practical datatable | | [v-uploader](https://github.com/TerryZ/v-uploader) | [![npm version](https://img.shields.io/npm/v/v-uploader.svg)](https://www.npmjs.com/package/v-uploader) | A Vue2 plugin to make files upload simple and easier,
you can drag files or select file in dialog to upload | | [v-ztree](https://github.com/TerryZ/v-ztree) | [![npm version](https://img.shields.io/npm/v/v-ztree.svg)](https://www.npmjs.com/package/v-ztree) | A simple tree for Vue2, support single or multiple(check) select tree,
and support server side data | | [v-gallery](https://github.com/TerryZ/v-gallery) | [![npm version](https://img.shields.io/npm/v/v-gallery.svg)](https://www.npmjs.com/package/v-gallery) | A Vue2 plugin make browsing images in gallery | | [v-region](https://github.com/TerryZ/v-region) | [![npm version](https://img.shields.io/npm/v/v-region.svg)](https://www.npmjs.com/package/v-region) | A simple region selector, provide Chinese administrative division data | | [v-selectpage](https://github.com/TerryZ/v-selectpage) | [![npm version](https://img.shields.io/npm/v/v-selectpage.svg)](https://www.npmjs.com/package/v-selectpage) | A powerful selector for Vue2, list or table view of pagination,
use tags for multiple selection, i18n and server side resources supports | | [v-suggest](https://github.com/TerryZ/v-suggest) | [![npm version](https://img.shields.io/npm/v/v-suggest.svg)](https://www.npmjs.com/package/v-suggest) | A Vue2 plugin for input suggestions by autocomplete | | [v-playback](https://github.com/TerryZ/v-playback) | [![npm version](https://img.shields.io/npm/v/v-playback.svg)](https://www.npmjs.com/package/v-playback) | A Vue2 plugin to make video play easier | | [v-selectmenu](https://github.com/TerryZ/v-selectmenu) | [![npm version](https://img.shields.io/npm/v/v-selectmenu.svg)](https://www.npmjs.com/package/v-selectmenu) | A simple, easier and highly customized menu solution |

## 插件预览 带图片预览的单文件上传

v-uploader-single

批量上传文件可进行拖拽

v-uploader-multiple



## 安装 ``` bash npm i v-uploader --save ``` 在项目入口 `main.js` 文件中进行引用 ```js import Vue from 'vue' import vUploader from 'v-uploader'; /** * v-uploader plugin global config */ const uploaderConfig = () => { return { uploadFileUrl: 'http://xxx/upload', deleteFileUrl: 'http://xxx/delete', showMessage: (vue, message) => { //using v-dialogs to show message vue.$vDialog.alert(message, null, {messageType: 'error'}); } } }; //install plugin with params Vue.use(vUploader, uploaderConfig); ``` There is using **[v-dialogs](https://github.com/TerryZ/v-dialogs)** to show message in example

## Depend on - [fine-uploader](https://github.com/FineUploader/fine-uploader) - [holderjs](https://github.com/imsky/holder)