BookStack/resources/views/components/dropzone.blade.php
Dan Brown 14b6cd1091
Started migration of attachment manager from vue
- Created new dropzone component.
- Added standard component event system using custom DOM events.
- Added tabs component.
- Added ajax-delete-row component.
2020-06-30 22:12:45 +01:00

9 lines
255 B
PHP

{{--
@url - URL to upload to.
@placeholder - Placeholder text
--}}
<div component="dropzone"
option:dropzone:url="{{ $url }}"
class="dropzone-container text-center">
<button type="button" class="dz-message">{{ $placeholder }}</button>
</div>