v-uploader 基于 Vue2 的文件上传插件 项目简介
v-uploader基于 Vue2 简洁易用,可批量、拖拽的文件上传插件。Demo、文档请浏览English site国内站点插件预览带图片预览的单文件上传批量上传文件可进行拖拽安装npm i v-uploader --save在项目入口 main.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 to show message in exampleDepend onfine-uploaderholderjs
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 to show message in exampleDepend onfine-uploaderholderjs