as the title says, i have an issue when using vue version 2.4.1 its requires [email protected]
@bunnypro
For the time being you can install your own on top of Laravel mix
npm install [email protected] --save-dev
# YARN
yarn add [email protected]
Now webpack will use your version instead of installed by laravel mix. You may want to update vue loader as well.
If it ever gets out of sync, either manually install vue-template-compiler like @ankurk91 suggested, or nuke your node_modules directory and reinstall.
a simpler solution
yarn remove laravel-mix
# then
yarn add laravel-mix
or in one line
yarn remove laravel-mix;yarn add laravel-mix
@ctf0 your solution worked for me.
Deleting node_modules and reinstalling did not.
If you delete your node_modes to update you may have to delete your lock file too.
Most helpful comment
@bunnypro
For the time being you can install your own on top of Laravel mix
Now webpack will use your version instead of installed by laravel mix. You may want to update vue loader as well.