TerryZ / v-uploader

A Vue2 plugin make files upload simple and easier, single file upload with image preview, multiple upload with drag and drop

Home Page:https://terryz.github.io/vue/#/upload

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



v-uploader

v-uploader

A Vue2 plugin make files upload simple and easier,
single file upload with image preview, multiple upload with drag and drop






Examples and Documentation

Explorer on

Plugin preview

Single file upload with image preview

v-uploader-single

Multiple files upload with drag and drop

v-uploader-multiple

Installation

npm i v-uploader -S

Include and install plugin in your main.js file.

import Vue from 'vue'
import Uploader from 'v-uploader'
import { DialogAlert } from 'v-dialogs'

/**
 * v-uploader plugin global config
 */
const uploaderConfig = {
  uploadFileUrl: 'https://some-site/upload',
  deleteFileUrl: 'https://some-site/delete',
  showMessage: (vue, message) => {
    // using v-dialogs to display error message
    DialogAlert(message, { messageType: 'error' })
  }
}

// Globally install plugin with options
Vue.use(Uploader, uploaderConfig)

Use v-dialogs plugin to display message for example

Dependencies

License

FOSSA Status

About

A Vue2 plugin make files upload simple and easier, single file upload with image preview, multiple upload with drag and drop

https://terryz.github.io/vue/#/upload

License:MIT License


Languages

Language:Vue 76.3%Language:JavaScript 23.7%