<modal name="ModalName" click-to-close="false">
On adding the property as mentioned above the following error is shown on the console:
" Invalid prop: type check failed for prop "clickToClose". Expected Boolean, got String."
You MUST BIND values in Vue.js. v-bind:click-to-close="false".
Most helpful comment
You MUST BIND values in Vue.js.
v-bind:click-to-close="false".