1.0.2 • Published 5 years ago

@webutils/vue2-uploader v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Uploader Window

What is Uploader Window?

Add file upload capabilities to your website or app in just 1 line of JS code!

Supports direct uploading from Facebook, Dropbox, GDrive, via Link, via Image Search, Mic, Camera, Youtube, etc.

You can save files directly to your S3 bucket or your Dropbox spaces account.

In built image editor so users can edit, resize, apply filters to images.

What is this npm module?

This is a VueJS component that you can directly use inside your VueJS projects as a mixin like this:

import Vue from 'vue';
import UploaderWindow from '@webutils/vue2-uploader';

Vue.use(UploaderWindow, {apiKey: 'your-api-key'});

//then inside any method

this.$uploader.open().then(urls => console.log(urls));