How to see which Vue Version is installed in Laravel and how to update? How to see which Vue Version is installed in Laravel and how to update? vue.js vue.js

How to see which Vue Version is installed in Laravel and how to update?


Go to package.json under dependencies you can find "vue": "^2.1.10" if you wish to change version, just edit to the version you want and run npm update or npm install

Or if you wish to do it through npm then

npm remove vuenpm install vue@2.X.X --save