I am currently utilizing the vue-js-modal library, and I'm encountering an issue with it. Whenever I set my modal to be draggable by using :draggable="true", I can drag it around but then I am unable to input any text in the form fields. It seems to consider the inputs as draggable elements too. How can I fix this problem?
This is how I have configured it:
<!-- The modal specifically for the panel history -->
<modal :adaptive="true" height="70%" width="60%" :resizable="true" class="modalSize" :draggable='true' name="modalPanel">
<span class="cross" @click="$modal.hide('modalPanel')">
✖
</span>
<!-- This is where the panel history is displayed -->
<appPanelHistory>
</appPanelHistory>
</modal>
Upon opening the modal, I am unable to edit my inputs. Does anyone know how to resolve this issue? Thank you.