[Vuejs]-Iframe scrollHeight return iframe height and not document height

0๐Ÿ‘

โœ…

i think your iframe element has padding or something you can delete padding or margin of your iframe using this :

<iframe :src="embed" frameborder="0" ref="lookerIframe" style="margin:0;padding:0;"></iframe>

I hope it had been useful for you.

Leave a comment