美文网首页
webpack vue-loader was used with

webpack vue-loader was used with

作者: 子绎 | 来源:发表于2019-07-15 17:41 被阅读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的。

相关文章

网友评论

      本文标题:webpack vue-loader was used with

      本文链接:https://www.haomeiwen.com/subject/frkokctx.html