0
In your webpack.mix file you have the following line:
path.resolve(__dirname, 'node_modules/vue'),
Just make sure that this is correct, It maybe that you need to target a dist folder or similar e.g.
path.resolve(__dirname, 'node_modules/vue/dist'),
Source:stackexchange.com