Skip to content

TerryZ/v-uploader

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 



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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published