webpack.config.js已经配置了vue-loader但跑项目时报错:
image.png
解决:webpack.config.js文件配置:
const {VueLoaderPlugin} = require('vue-loader')
module.exports = {
plugins: [
new VueLoaderPlugin()
],
}
webpack.config.js已经配置了vue-loader但跑项目时报错:
解决:webpack.config.js文件配置:
const {VueLoaderPlugin} = require('vue-loader')
module.exports = {
plugins: [
new VueLoaderPlugin()
],
}
本文标题:webpack.config.js已经配置了vue-loader
本文链接:https://www.haomeiwen.com/subject/pufixctx.html
网友评论