为了账号安全,请及时绑定邮箱和手机立即绑定

ERROR in ./src/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/index.js 2:0-27 8:18-21 ERROR in ./src/app.vue?

我配置的时候报错好多?

正在回答

5 回答

vue-loader 查阅文档发现v15版的vue-loader配置需要加个VueLoaderPlugin
const VueLoaderPlugin =require('vueloader/lib/plugin');


0 回复 有任何疑惑可以回复我~

非常感谢,我也遇到同样的问题,我重装了vue-loader的版本15.7.0,然后按照你的方法修改之后build成功了。

0 回复 有任何疑惑可以回复我~
const path = require('path');
const VueLoaderPlugin =require('vue-loader/lib/plugin');
module.exports = {   
     entry : path.join(__dirname, 'src/index.js'),//__dirname 当前文件所在的目录地址  
     output: {     
        filename: 'bundle.js',     
        path: path.join(__dirname,'dist')   
         }, 
     module: {      
       rules: [ ]
       },      
     plugins: [ new VueLoaderPlugin() ],
     mode: 'development'
 }

这是我的配置,上面的问题这样就可以解决了,还有一些rules里面的配置 ,本节课学习完就可以解决了

1 回复 有任何疑惑可以回复我~
const VueLoaderPlugin = require('vue-loader/lib/plugin');
...

  plugins: [

    new VueLoaderPlugin(),

  ],


0 回复 有任何疑惑可以回复我~

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

百度一下

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

ERROR in ./src/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/index.js 2:0-27 8:18-21 ERROR in ./src/app.vue?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信