vue-loader相关

【1】
vue-loader@v15以后安装的时候除了配置loader还要配置plugin

const VueLoaderPlugin = require('vue-loader/lib/plugin');
//...
module: {
  rules: [
    {
      test: /\.vue$/,
      loader: 'vue-loader',
    },
  ]
},
plugins:[
  new VueLoaderPlugin(),
]

同时注意:vue-loader规则不能放到oneOf里,VueLoaderPlugin会找不到,这可能是个bug,也许以后版本会修复吧。

你可能感兴趣的:(vue-loader相关)