0.2.1 • Published 5 years ago
@reciprocity/file-dropzone v0.2.1
FileDropzone
A file input field with file drag and drop support.
Installation
npm install @reciprocity/file-dropzoneor
yarn add @reciprocity/file-dropzoneUsage
This component is meant to be used as an ES module, so you can import it using the ES6 import syntax.
After importing you can just register it with Vue. Eg:
app.vue
<template>
<file-dropzone multiple @input="fileSelected" />
</template>
<script>
import FileDropzone from '@reciprocity/file-dropzone';
export default Vue.extend({
name: 'My App',
components: {
FileDropzone
},
methods: {
fileSelected(file) {
console.log('File selected!');
}
}
};
</script>