1.1.21 • Published 8 months ago

vue-uploader v1.1.21

Weekly downloads
3
License
-
Repository
github
Last release
8 months ago

VueUploader

VueUploader is a Vue.js component that provides a user-friendly interface for uploading files. It supports both drag-and-drop functionality and traditional file selection.

Features

  • Drag-and-Drop Upload: Users can drag files into the drop zone to upload them.
  • File Selection: Allows users to click and select files from their file system.
  • Multiple File Support: Upload multiple files at once or restrict to a single file.
  • File Removal: Option to remove files from the list after they've been added.

Installation

Install VueUploader via npm:

npm install vue-uploader

usage / example

import VueUploader compnent in main.js:

import vueUploader from "vue-uploader";
import "vue-uploader/dist/style.css";

const app = createApp(App);
app.use(vueUploader);
app.mount("#app");

use of the VueUploader

<script setup>
import { ref } from "vue";
const files = ref();
const onFileUpload = (files) => {};
const onRemoveFile = (files) => {};
</script>
<template>
  <VueUploader
    :multiple="true"
    label="Upload or drag & drop"
    v-model="files"
  ></VueUploader>
</template>

Props and events

  • @onFileUpload="onFileUpload": This binds the onFileUpload function to the onFileUpload event of the VueUploader component, which will be triggered when a file is uploaded.
  • @onRemoveFile="onRemoveFile": This binds the onRemoveFile function to the onRemoveFile event of the VueUploader component, which will be triggered when a file is removed.
  • :multiple="false":This prop ensures that only one file can be uploaded at a time.
  • label="Upload or drag & drop": This prop sets the label or placeholder text displayed in the uploader component

Preview

App Screenshot

Thanks a lot

If you appreciate my work and want to support future projects, consider buying me a coffee! ☕️

1.1.8

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.19

8 months ago

1.1.18

8 months ago

1.1.21

8 months ago

1.1.20

8 months ago

1.1.1

10 months ago

1.0.2

10 months ago

1.1.0

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.1.5

10 months ago

1.0.6

10 months ago

1.1.4

10 months ago

1.0.5

10 months ago

1.1.3

10 months ago

1.0.4

10 months ago

1.1.2

10 months ago

1.0.3

10 months ago

0.0.0

10 months ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago