- 报错信息:
[eslint] 'document' is not defined. [no-undef]
var document: Document
报错原因:
eslint中配置了检查是否可用全局变量
解决方案:
在.eslintrc文件中找到global配置添加全局变量。
"globals": {
"localStorage": true,
"window" : true,
"document": true
}
[eslint] 'document' is not defined. [no-undef]
var document: Document
报错原因:
eslint中配置了检查是否可用全局变量
解决方案:
在.eslintrc文件中找到global配置添加全局变量。
"globals": {
"localStorage": true,
"window" : true,
"document": true
}