项目场景:

使用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

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐