Difference between Asyncdata vs Fetch

前端 未结 4 1682
逝去的感伤
逝去的感伤 2020-12-24 10:43

What is the exact difference between fetch and async data. The official documentation says the following:

asyncData

You may want

4条回答
  •  感情败类
    2020-12-24 11:23

    I. fetch and asyncData are processed on the server-side.

    II. can see the difference in the way to use them:

    a) fetch: change store data

    
    

    b) asyncData: change context (component data)

    
    

提交回复
热议问题