Skip to content

Commit 4dbda99

Browse files
committed
Changelog updated for next release
1 parent 0a20d41 commit 4dbda99

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 2.3.6
2+
- Added `method` as prop, updated accepted types for `clickable` option. ceaba46fe105329b21477676d60bff70c5cd8cb1
3+
- Added `confirm` as prop. ecc7cdb7f19bb6a4cba749fd012afbdeb61500cf
4+
- Added `hiddenInputContainer` and `capture` as props. 9c742d156d1433b43bfc43e50667f0c8754c3489
5+
- Updated `README` with **LARAVEL** integration option. 6b96e85a54adcd1228be9c8ae9189f199e74cc8b
6+
- Added `withCredentials` as prop. c459af69840a1cf6a4eb6d7db9b26683cfe03977
7+
- Added missing dataUrl to the thumbnail event as second parameter. ba39a9cf6e94cd515b2f6cb54f5a47a4004060a9
8+
19
### 2.3.5
210
- Added support for `uploadMultiple`. Fixes [#107](https://github.com/rowanwins/vue-dropzone/issues/107)
311
- Error messages positioned correctly. Fixes [#127](https://github.com/rowanwins/vue-dropzone/issues/127)

src/App.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
<div v-if="ok">
77
<dropzone ref="myVueDropzone" id="dropzone" url="https://httpbin.org/post"
88
v-on:vdropzone-success="showSuccess"
9-
v-bind:dropzone-options="dropzoneOptions"
9+
v-bind:dropzone-options="dropzoneOptions"
10+
v-bind:clickable='"#upload-button"'
1011
v-bind:use-custom-dropzone-options="true">
1112
</dropzone>
1213
<button @click="submitFiles()">Start Upload</button>
1314
<button @click="process">Process</button>
15+
<button id="upload-button">Process1</button>
1416
</div>
1517
</div>
1618
</template>

0 commit comments

Comments
 (0)