Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: How to wrap useAsyncData for SSR aware code (seo meta tags) #466

Open
yllaw opened this issue Sep 27, 2023 · 0 comments
Open

docs: How to wrap useAsyncData for SSR aware code (seo meta tags) #466

yllaw opened this issue Sep 27, 2023 · 0 comments
Labels
documentation Improvements or additions to documentation

Comments

@yllaw
Copy link

yllaw commented Sep 27, 2023

馃摎 Is your documentation request related to a problem?

I want to set meta tags server side for the web build.

The doc mentions to wrap useAsyncData for SSR aware code.

It is unclear how a implementation for such a wrapper function would look like.

馃攳 Where should you find it?

https://ionic.nuxtjs.org/cookbook/web-and-device#a-single-codebase

鈩癸笍 Additional context

Our current workaround for SSR to set meta tags from asynchronous data on a nuxt/ionic web server is to

  1. Wrap useSeoMeta & useServerSeoMeta like so:
useIonMeta.ts

export function useIonMeta(seoInput: UseSeoMetaInput) {
  useServerSeoMeta(seoInput);

  onIonViewWillEnter(() => {
    useSeoMeta(seoInput);
  });
}
  1. Query async data and set tags in App.vue
App.vue

const { data } = await useFetch(`https://gorest.co.in/public/v2/users`);

  useIonMeta({
    title: () => data.value?.name,
    // more meta tags e.g. description, ogImageUrl, etc
  });

I would be more than happy to modify the docs and create a PR.

Thanks

@yllaw yllaw added the documentation Improvements or additions to documentation label Sep 27, 2023
@danielroe danielroe removed their assignment Jan 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants