Invalid prop: type check failed for prop "height". Expected Number, got String
boolow5 opened this issue · 2 comments
boolow5 commented
<vodal :show="showTerms" height="500" animation="rotate" @hide="showTerms = false">
<terms-modal></terms-modal>
</vodal>
the height is changed to 500px but the console shows this error:
Invalid prop: type check failed for prop "height". Expected Number, got String
davodaslanifakor commented
try this
<vodal :show="showTerms" :height="500" animation="rotate" @hide="showTerms = false">
<terms-modal></terms-modal>
</vodal>
boolow5 commented
Thanks this worked for me.