[Vuejs]-Vue iframe recursively reload fonts

0👍

Could it be that the iframe is loading itself again and again, therefore loading fonts, etc?

You could identify the iframe and make a check to be sure it doesn’t load more than it needs to.

0👍

The bug was in infinite change of element <style>.

style.innerHTML = `
    body {
        top: ${e.data.offset.top}px !important;
        right: ${e.data.offset.right}px !important;
        bottom: ${e.data.offset.bottom}px !important;
        left: ${e.data.offset.left}px !important;
    }
`;

But whi that simple change of style reload font i dont know.

Leave a comment