Fix v-upload reading null file

Fixes #477
This commit is contained in:
rijkvanzanten
2020-10-01 10:07:50 -04:00
parent 8b102b7da0
commit 2a77c0cb07
5 changed files with 12 additions and 24 deletions

View File

@@ -3,7 +3,7 @@
<v-card>
<v-card-title>{{ $t('add_file') }}</v-card-title>
<v-card-text>
<v-upload :preset="preset" multiple @upload="close" from-url />
<v-upload :preset="preset" multiple @input="close" from-url />
</v-card-text>
<v-card-actions>
<v-button secondary @click="close">{{ $t('done') }}</v-button>