I’m using nuxt module @nuxt/strapi and is very useful.
Not only to get the authorization user system (via jwt token), but to other strapi services or calls to api.
For example, doing a graphql call you only put:
const response = await this.$strapi.graphql(…)
Or with rest calls:
const entries = await this.$strapi.find(‘entries’)