How do I upgrade Vue? Is there a command for that or need to manually do npm install
How do I upgrade Vue 3.4.21 to 3.4.31? Is there a command for that or need to maually do npm install for vue package?
I've used
npm up vue
that is not working9 Replies
Just change the version in package.json and rerun
npm i
There will be lot of dependent package. They might not work then right?
When you run it if there are any dependencies that are mismatched it will tell you.
should be fine
Ahh! Manual update only.
well, if you have the vue cli installed, it's just
vue upgrade
https://cli.vuejs.org/guide/installationbut yeah it's easier to just manually update it
No I don't. Nevermind, I'll do manually.
Vue is now big enough to handle this task
For what it's worth, Nuxt does have an upgrade command: https://nuxt.com/docs/api/commands/upgrade
Yea Nuxt has it.