How to Set up a Nuxt App with Strapi Using Graphql: Building an Event App

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’)