webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin报错

这个报错一般都是引入了vue-loader的同学。 这个错误解决方案为

我们需要在webpack.config.js中写入

const VueLoaderPlugin = require('vue-loader/lib/plugin');

然后在module.exports中写入

 plugins: [
        // make sure to include the plugin for the magic
        new VueLoaderPlugin()
    ],

一般加上后基本能解决问题 因为在Vue-loader在15.*之后的版本都是 vue-loader的使用都是需要伴生 VueLoaderPlugin的。

你可能感兴趣的:(webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin报错)