报错信息如下:ERROR in ./src/login.vue Module Error (from ./node_modules/vue-loader/lib/index.js): vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. @ ./src/main.js 7:13-35
解决办法如下:
// webpack.config.js
const VueLoaderPlugin = require(‘vue-loader/lib/plugin‘) module.exports = { plugins:[ new VueLoaderPlugin() ], module:{ rules:[ {test:/\.vue/,use:‘vue-loader‘}, ] }, }
原文地址:https://www.cnblogs.com/Mishell/p/12266909.html
时间: 2024-11-05 14:50:58