Code Monkey home page Code Monkey logo

Comments (5)

baxgas avatar baxgas commented on June 1, 2024 2

But, in case of the menu, which should be fetched dynamically from the WP REST json, if the asyncData doesn't work on the layout/component level isn't it a bit SEO unfriendly? Or it doesn't matter if the pages themselves are loaded correctly?

from wuxt.

northosts avatar northosts commented on June 1, 2024

Hi, you have to return something from asyncData. like:

async asyncData({ $axios }) {
  const data = await $axios.$get('https://jsonplaceholder.typicode.com/todos/1')
  return { 
    faketitle: data.title
  }; 
},

Hope that helps!

from wuxt.

baxgas avatar baxgas commented on June 1, 2024

Thanks, but somehow asyncData doesn't work in my case :-(
I tried with axios on mounted() with this code, and it works like a charm, but I believe it avoids the Server-side rendering?

axios.get('https://jsonplaceholder.typicode.com/todos/1')
.then((res) => ( this.faketitle = res.data.title ))

from wuxt.

baxgas avatar baxgas commented on June 1, 2024

OK, I've got the solution, the asyncData works only on page type of template and I tried on the layout...

from wuxt.

northosts avatar northosts commented on June 1, 2024

That's more a question for Nuxtjs, but you're right asyncData does not work in layouts. Great that you found the solution.
Not entirely sure what you mean with the second part of your question, you are always loading layout and components with pages, so everything will be loaded dynamically.

from wuxt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.