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

Using a backend only content management system has now become a trend in the modern web. With Strapi being one of the most popular to use in developing our web apps, we'll learn how to connect a Nuxt app with Strapi using GraphQL


This is a companion discussion topic for the original entry at https://strapi.io/blog/setting-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’)

Hi, I have the problem that my nuxt app isn’t displaying the Events images.

Will there be a tutorial to deploy ?