[Vuejs]-Vue3 – Setting up Pinia gives me an error of no active Pinia

1👍

You can’t pass multiple plugins to a single app.use() method.
Instead, you have to chain them – one plugin each:

app.use(…).use(…)

Leave a comment