Javascript – $refs not loaded on Vue.js component
I have a component in Vue.js that has a modal view with different references inside. <template> <div> <b-modal ref="modalDialog" > <b-row> <!-- document --> <b-col> <document-creation ref="documentCreation"/> </b-col> </b-row> <patient-creation-or-detection ref="patientCreationOrDetection" /> .... </b-model> <confirmation-dialog ref="confirmAndCreatePatient" /> ... </div> </template>…