What does nuxt do, keep-alive?

I want to keep the information on the page, but the keep-alive that shares nuxt will empty the data of data every time. Does nuxt not support keep-alive?

Jun.27,2021

nuxt
which added this feature to 1.2.0 can refer to https://github.com/nuxt/nuxt.


Nuxt does not support keep-alive caching data data as SSR, so it cannot be expected to cache data like vue. In my project, I generally use sessionStorage of H5 to establish the caching mechanism function. The landlord can use the following

for reference.
Menu