Vue出现This relative module was not found错误

本文讲述了在使用Vue 15+时遇到'This relativemodule was not found'错误,原因在于缺少VueLoaderPlugin。通过调整webpack配置,将loader改为use并添加新插件,解决了此问题,确保了Vue组件的正确加载。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Vue出现This relative module was not found错误

出现如下错误

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

You may use special comments to disable some warnings.

这是因为vue-loader的版本是15以上需要加入VueLoaderPlugin,具体配置如下

在webpack.base.conf.js加入其中一些代码省略了,只看关键的位置就好。

const VueLoaderPlugin = require('vue-loader/lib/plugin')

let webpackConfig = {
  context: path.resolve(__dirname, '../'),
  entry: {
    app: './src/main.js'
  },
  output: [],
  resolve:[],
  plugins: {
    new VueLoaderPlugin()
  }
}
module.exports = webpackConfig

Module parse failed: Unexpected token (3:0)
You may need an appropriate loader to handle this file type.

首先查看 webpack.base.conf.js

loader报错

loader: ‘vue-loader’ 改为 use: 'vue-loader’

重新npm run dev项目成功运行。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值