Hello everyone I have a question... I didn't notice that Laravel has already packages including vue.js I just knew it after I installed via npm npm install vue.
My question is, should run npm uninstall view or It override the old vue in package json? or let say Let it be?...
npm stands for "node package manager". So whenever you run npm install package it will check your package.json file and based on that install the new dependency or either update an existing one.
If you don't want to use vue you have two options. Either run npm uninstall vue or you can remove the dependency in your package.json file and run npm install. It will also then delete the packages that are not available in the package.json file!
@BOBBYBOUWMANN - Thanks sir, I'm a little bit confused... because I run it then as I watched a tutorial that the time I knew that it was included. Thanks for the answer sir.. :)