May be related to #7791
Nuxt payloads do not always apply correct in generated apps with target: static, if nuxt-child is used, and both a child component of the higher-level component, and one of the children of nuxt-child implement fetch() (see diagram below)
Source: https://github.com/FreekVR/nuxt-static-repro/tree/nested-fetch-issues
Demo: https://wonderful-ardinghelli-e41a6b.netlify.app/magazine/category/bar/
This will have correctly generated data on first (hard) load, but clicking the link-links present on the page will show that in SPA mode, the payload data is not applying afterwards.
This seems to be caused by the fetch() in this component, which is included in the nuxt-child parent component.
Have an application implementing a structure like below (see repro source for practical implementation)

Data is correctly applied from the payload when navigating through SPA links
Data is not applied / lost
Same error here. I will try to give more infos and another example repo soon too.
I can confirm the issue, same behaviour as stated in description.
The page is generated correctly, even the payload data exist, but when navigating using <nuxt-link> the nested fetch hook is not being invoked.
Until this issue is resolved, we've opted for calling fetch in beforeMounted hook which seems to work properly with the static target.
async fetch () {
// fetching data
},
async beforeMount () {
await this.$fetch();
}
Thanks for your contribution to Nuxt.js!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you would like this issue to remain open:
Issues that are labeled as pending will not be automatically marked as stale.
I can confirm that this issue still persists with the latest release, unfortunately.
I also faced this bug. Is there any update?
Most helpful comment
I can confirm that this issue still persists with the latest release, unfortunately.