项目场景:

使用webapck5打包vue3插件引入vue-loader出现

Error: [VueLoaderPlugin Error] No matching use for vue-loader is found. 
Make sure the rule matching .vue files include vue-loader in its use.

解决办法:

把vue-loader拿到首位就可以解决

  module: {
    rules: [
      {
        test: /\.vue$/,
        loader: "vue-loader",
      },
Logo

前往低代码交流专区

更多推荐