vue-loader 15.x 版本使用时要比 **14.x ** 版本多定义一个plugin,否则会报错
根据vue-loader官方提供的15版本的声明方法,定义plugin。
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
module: {
rules: [
// ... other rules
{
test: /\.vue$/,
loader: 'vue-loader'
}
]
},
plugins: [
new VueLoaderPlugin() //15版本需指定plugin
]}
网友评论