I have integrated the vue-js-modal library into my project and followed the instructions provided in the documentation. However, I am facing an issue where I want to prevent users from closing the modal by clicking on the background behind it.
The documentation suggests using the clickToClose property, but when I try implementing it within the modal as shown below, I encounter an error message:
<modal name="image-modal" clickToClose="false"></modal>
Error message received:
Vue warn]: Invalid prop: type check failed for prop "clickToClose". Expected Boolean, got String.
Can someone provide a solution to this issue?