add folder upload with drag&drop (#147)

* add folder upload with drag&drop

* remove semicolons

* remove whitespaces and use arrow function
This commit is contained in:
ahaenggli
2020-11-02 11:32:06 +01:00
committed by GitHub
parent 8196cce153
commit 19dd7be1c8
2 changed files with 15 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
<Upload v-if="can('upload')" v-show="dropZone == false" :files="files" :drop-zone="dropZone" />
<b-upload v-if="dropZone && ! isLoading" multiple drag-drop @input="files = $event">
<b-upload v-if="dropZone && ! isLoading" multiple drag-drop>
<b class="drop-info">{{ lang('Drop files to upload') }}</b>
</b-upload>