遇到的问题

在运行创建的项目时出现的报错问题
Module Error (from ./node_modules/eslint-loader/index.js);具体报错如下图显示;
在这里插入图片描述
此问题在有时项目运行时不会报错,有时会报错;

解决方法

方法一

  1. 找到根目录,在根目录下创建文件vue.config.js
  2. 在创建的项目文件内输入
module.exports={
	lintOnSave:false
}

保存,重新运行便可。

方法二

  1. 初始化并重新安装eslint
npm init -y    //只是为了查看package.json的目录

npm install eslint --save-dev
  1. 进入node_modules下的bin目录,进行对eslint的初始化
cd node_modules
cd .bin 
eslint --init   //进行初始化
  1. 设置配置,除vue.js外,其它都为默认选项,到选择vue.js步骤,选择想要运行的类型(例子为选择的vue)
? How would you like to use ESLint? To check syntax and find problems
? What type of modules does your project use? JavaScript modules (import/export)
? Which framework does your project use? Vue.js
  1. 将node_modules目录下的bin目录里面的.eslintrc.js根目录下

保存,重新运行

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐