如何访问@nuxtjs/auth中的授权令牌

How to access authorization token in @nuxtjs/auth

我正在使用nuxt js + @nuxjs/auth (4.9.1) 构建项目

问题是当我使用 this.$auth.strategy.token.get() 访问授权令牌时出现错误 Cannot read property 'get' of undefined

如何访问@nuxtjs/auth中的授权令牌?

我正在使用 nuxt.conf.js 中定义的自定义策略,如下所示:

  auth: {
    strategies: {
      customStrategy: {
        scheme: '~/schemes/customScheme',
        ....

我可以使用以下路径获取令牌:

  console.log(this.$auth.$storage._state['_token.customStrategy'])