vue-full-screen-file-drop
vue-full-screen-file-drop copied to clipboard
Trigger full page drag drop on click.
Hi, I have a requirement where i need to use both drag drop in fullscreen and also on click event. I mean when button is clicked i want to show this full screen dragdrop screen. can you please help me how it can be done.
That functionality is outside the bounds of this package - here's how I would do it:
- Create a component with a v-if, which houses the
<VueFullscreenDragDrop>
component - Have a button that toggles the v-if
This way the fullscreen drag drop functionality is non existant until the v-if is toggled on, at which point the user can drag drop.