vue-loader was used without the corresponding plugin.问题解决

使用vue-loader时,报错

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

原因是:
Vue-loader在15.*之后的版本都是 vue-loader的使用都是需要伴生 VueLoaderPlugin的
所以这里缺少VueLoaderPlugin

解决办法:

  1. 在入口文件中引入VueLoaderPlugin
    在这里插入图片描述
  2. 在 module.exports中的plugins选项中添加:
    vue-loader was used without the corresponding plugin.问题解决_第1张图片

你可能感兴趣的:(vue-loader was used without the corresponding plugin.问题解决)