// a.jsexport default { say() { console.log('hi') }, run() { console.log('run') }}// b.js import a from './a'a.run()问 tree-shaking 能不能去掉 say()的代码 查看完整描述