How to use asyncData () in Nuxt.js Project how to use this

I want to use this in asyncData () in the Nuxt.js project
it is officially said that this
cannot be used in asyncData (), but my business requirement is to send a variable managed by vuex to the server when the page is loaded. The data code is as follows:
asyncData () {

  return axios.get("http://lpsdaikuan.com/vloan.php", {params: { address: this.$store.state.ArticleID }})
    .then(res => { 
      return {Articlelist: res.data} //  
    })
}
this.$store.state.ArticleID  
Mar.06,2021

it's written in the document

https://zh.nuxtjs.org/api

asyncData can accept a context parameter that contains all the information about the current environment

context.store you can get the vuex instance. Open the link to see the specific content

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2c44b-2bae5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2c44b-2bae5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?