skip to Main Content

Css – What is the best way to calculate the height of element

I use Bootstrap Vue table with Vue v2 and I currently use a prop (sticky-header="600px") to set the table height: <page-wrapper> <page-header> </page-header> <div class="content"> <b-card> <b-row> <b-col></b-col> <b-col> <b-form-group> <b-form-radio-group></b-form-radio-group> </b-form-group> </b-col> <b-col></b-col> </b-row> <div class="table-responsive"> <b-table-simple class="text-left border-left…

VIEW QUESTION

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>…

VIEW QUESTION
Back To Top
Search