Can nuxt.js+koa pages get asynchronous data only by requesting an interface in asyncData?

Can the

nuxt.js+koa page get asynchronous data only by requesting an interface in asyncData? Can
replace data directly from the server to HTML in the form of a template?
in the form of node+ejs, if you can only request data through an interface, doesn"t that mean you need to wait for an extra request interface?

Jul.15,2021

asyncData API is defined as loading data on the server side and rendering it on the server side. After returning to the page, the rest of the API is reexecuted on the client side.

Menu