[Vuejs]-In vue3 , TypeError: Cannot use 'in' operator to search for '__vInternal' in true

0👍

The error you’re encountering occurs because you’re trying to bind a boolean value (true) to the v-bind directive on the DHCCModal component. The v-bind directive expects an object, not a boolean. update use like it fix the issue you are facing need more clearance for what you trying to do then will help.

 <DHCCModal>
  <template #default>
    <div>
      jack
    </div>
  </template>
</DHCCModal> 

Leave a comment