× Client
Compiled with some errors in 7.42s
√ Server
Compiled successfully in 6.05s
ERROR Failed to compile with 1 errors friendly-errors 17:33:15
ERROR in ./pages/player/_vid.vue friendly-errors 17:33:15
Module Error (from ./node_modules/eslint-loader/index.js): friendly-errors 17:33:15
E:\java\JavaWorkSpace\OnlineEducation\WebReview\vue-front-1010\pages\player\_vid.vue
28:9 error 'Aliplayer' is not defined no-undef
1 problem (1 error, 0 warnings)
报错截图:
解决办法:
在使用vue的时候,使用一个全局变量,ESLint的语法会出现ESLint: 'Aliplayer' is not defined. (no-undef),说变量未定义,这时我们可以添加配置,取消这个校验。
在.eslintrc.js文件中添加一个配置,位置如下图所示,我的全局变量就是Aliplayer。
在eslintrc.js中的module.exports内添加如下代码块:
"globals":{
"Aliplayer": true
}
位置如下:
module.exports = {
root: true,
parserOptions: {
xxxxxx
},
env: {
xxxxxx
},
rules: {
xxxxxx
},
"globals":{
"Aliplayer": true
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)