You are reading Nuxt 2 docs. Head over nuxt.com for Nuxt 3 docs.

Anonymous Middleware

Using anonymous middleware to show the analytics of how many times a user visits a page.


In this example:

pages/anonymous-middleware.vue contains a middleware function which uses the store to call the increment mutation with results from the store displayed on the page.

store/analytics.js sets the pageVisits to 0 and increments the visits every time the increment function is called.