I’m surely doing something wrong as I try to become familiar with Vue and Ionic. When trying to install Pinia, I receive an error that Pinia needs Vue 3.3.6 and my project is using 3.3.4. The project was created with the Ionic CLI.
How can I upgrade a Vue.js app that was created with the Ionic CLI to the latest available version of Vue?
Thank you in advance. I really appreciate any help anyone can provide.
It looks like you are maybe trying to install @vue/composition-api in addition to pinia? @vue/composition-api is only needed if you are running Vue <2.7 (source).
To install Pinia, all you need is npm install pinia.