@burh/nuxt-core 1.0.385 → 1.0.387
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="dropzone mb-3 dz-clickable"
|
|
2
|
+
<div class="dropzone mb-3 dz-clickable border"
|
|
3
3
|
:class="[multiple ? 'dropzone-multiple': 'dropzone-single']">
|
|
4
4
|
<div class="fallback">
|
|
5
5
|
<div class="custom-file">
|
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
v-if="!multiple"
|
|
15
15
|
:class="previewClasses"
|
|
16
16
|
ref="previewSingle">
|
|
17
|
-
<div class="dz-preview-cover">
|
|
18
|
-
<
|
|
17
|
+
<div class="dz-preview-cover d-flex align-items-center justify-content-center">
|
|
18
|
+
<div>
|
|
19
|
+
<span> Vídeo pronto para ser enviado </span>
|
|
20
|
+
</div>
|
|
19
21
|
</div>
|
|
20
22
|
</div>
|
|
21
23
|
<ul v-else
|
|
@@ -84,8 +86,8 @@
|
|
|
84
86
|
let finalOptions = {
|
|
85
87
|
...this.options,
|
|
86
88
|
url: this.url,
|
|
87
|
-
thumbnailWidth:
|
|
88
|
-
thumbnailHeight:
|
|
89
|
+
thumbnailWidth: 120,
|
|
90
|
+
thumbnailHeight: 120,
|
|
89
91
|
previewsContainer: preview,
|
|
90
92
|
previewTemplate: preview.innerHTML,
|
|
91
93
|
maxFiles: (!this.multiple) ? 1 : null,
|
|
@@ -134,5 +136,3 @@
|
|
|
134
136
|
}
|
|
135
137
|
}
|
|
136
138
|
</script>
|
|
137
|
-
<style>
|
|
138
|
-
</style>
|