[eslint] E:\project\2023\4\4-25供电所glb项目\接线图场景vue2\my-project\src\components\threejs\meshobj\lineMap.vue 177:33 error 'array' is not defined no-undef ✖ 1 problem (1 error, 0 warnings) You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ERROR in [eslint] E:\project\2023\4\4-25供电所glb项目\接线图场景vue2\my-project\src\components\threejs\meshobj\lineMap.vue 177:33 error 'array' is not defined no-undef ✖ 1 problem (1 error, 0 warnings)
时间: 2023-06-24 17:04:04 浏览: 220
采油螺杆泵三维有限元模型分析 (2010年)
这是一个ESLint的错误提示,意思是在你的代码中使用了未定义的变量`array`。你需要检查一下代码,看看是不是拼写错误或者变量名错误,或者是没有正确引入所需的依赖。你可以根据错误提示进行修改,也可以使用特殊注释来禁用某些警告,比如在这一行的上方加入注释`// eslint-disable-next-line`,来忽略这一行的ESLint错误提示。
阅读全文