ERROR in ./src/vue/App.vue
Module Error (from ./node_modules/vue-loader/lib/index.js):
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.
@ ./src/js/b.js
const VueLoaderPlugin = require(‘vue-loader/lib/plugin‘);
module.exports = {
devtool: "sourcemap",
entry: ‘./js/entry.js‘, // 入口文件
output: {
filename: ‘bundle.js‘ // 打包出来的wenjian
},
plugins: [
// make sure to include the plugin for the magic
new VueLoaderPlugin()
],
module : {
...
}
}
. webpack2.4.*集成vue-loader@15.2.4报错
原文:https://www.cnblogs.com/ff-upday/p/14847719.html