Nuxt 2 code example

Example 1: nuxt does asyncData appear on the front end

As you've mentioned Nuxt will first fulfil any asynchronous call
you put into asyncData. Once this is done it'll start to
render your view, render in this context means it'll simply
replace your component tree on the first view with html. All of
this happens on your server,
the user wont even see any of this.

Example 2: 2gis nuxt

export default {
  modules: [
    // Simple usage
    '~/modules/simple'

    // Passing options directly
      ['~/modules/simple', { token: '123' }]
  ]
}