I’m using Vue 3 for my project and need to get use a ref from a third-party ReCaptcha package during the submission of a form. The code does not recognize the ref name since I did not personally create this ref: It’s used in the template like this: Usage can be found in the docs for this package here: https://www.npmjs.com/package/@appsbd/vue3-recaptcha
Tag: vue-script-setup
Watch child properties from parent component in vue 3
I’m wondering how I can observe child properties from the parent component in Vue 3 using the composition api (I’m working with the experimental script setup). I want to understand how I can watch changes in the child component from the parent component. My not working solution is inspired by the Vue.js 2 Solution asked here. So I don’t want