webpack vue-loader was used with

2019-07-15  本文已影响0人  子绎

这个报错一般都是引入了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的。

上一篇 下一篇

猜你喜欢

热点阅读