You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2025. It is now read-only.
I'am seeing wrong meta data when using LRU caching and SSR.
Setting a serverCacheKey in a component's options, will cache the component server side.
Case:
Let's say we have a component A and B with both a serverCacheKey and a different vue meta title.
The following:
<template>
<A>
<B></B>
</A>
</template>
Will result in:
The first load the rendered meta title will be Title B.
A second reload (cache hit) will render title A.
I know this is related to SSR Caching and not directly to Vue Meta.
Still, it would be helpful as I encountered this use case, as such others might aswel.
An example in the docs would do wonders 👍
Request:
SSR + Caching (LRU) components and keep rendering the correct metadata even on a cache hit.