vue引入3Dmol包时出现问题 This dependency was not found: * !!babel-loader!https://3Dmol.csb.pitt.edu/build/3Dmol-min.js in ./src/App.vue To install it, you can run: npm install --save !!babel-loader!https://3Dmol.csb.pitt.edu/build/3Dmol-min.js Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp' 报这个错,之后我这样执行 $ npm install --save !!babel-loader! https://3Dmol.csb.pitt.edu/build/3Dmol-min.js npm install --save npm run devbabel-loader! https://3Dmol.csb.pitt.edu/build/3Dmol-min.js npm ERR! code UNABLE_TO_VERIFY_LEAF_SIGNATURE npm ERR! errno UNABLE_TO_VERIFY_LEAF_SIGNATURE npm ERR! request to https://3dmol.csb.pitt.edu/build/3Dmol-min.js failed, reason: unable to verify the first certificate npm ERR! A complete log of this run can be found in: npm ERR! C:\software\node.js\node_cache\_logs\2024-01-08T10_25_07_189Z-debug-0.log 我的代码如下 let element = document.querySelector('#container-01'); let config = { backgroundColor: 'orange' }; let viewer = $3Dmol.createViewer( element, config ); viewer.addSphere({ center: {x:0, y:0, z:0}, radius: 10.0, color: 'green' }); viewer.zoomTo(); viewer.render(); viewer.zoom(0.8, 2000); .mol-container { width: 60%; height: 400px; position: relative; }