chenjiahan/vodal

Invalid prop: type check failed for prop "height". Expected Number, got String

boolow5 opened this issue · 2 comments

    <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

try this


<vodal :show="showTerms" :height="500" animation="rotate" @hide="showTerms = false">
        <terms-modal></terms-modal>
    </vodal>

Thanks this worked for me.