When loading page in SSR, the vue components load instantly, but their scoped styles are loaded only once the client-side is hydrated. Could this be caused by using v-bind in the scoped style block?
Try to move this into :style attribute and measure if there is any difference.
When loading page in SSR, the vue components load instantly, but their scoped styles are loaded only once the client-side is hydrated. Could this be caused by using
v-bind
in the scoped style block?Try to move this into
:style
attribute and measure if there is any difference.