zl程序教程

您现在的位置是:首页 >  前端

当前栏目

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

Vue to in The your was used plugin
2023-06-13 09:12:15 时间

原因

v15版的vue-loader配置需要加个VueLoaderPlugin

解决办法

在webpack配置文件添加

const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
    plugins:[
            new VueLoaderPlugin()
        ]
}