How can I access a Vuex store from within a middleware?
I know Nuxt3 suggests using Pinia, but I had problems installing/integrating it due to dependencies conflicts, so I used the ol' good Vuex.
Problem is, in Nuxt3 my middleware has no access to the context
object but just to the routes that are being navigated to/from.
So the question probably became: is that even possible or am I enforced to use Pinia?