摘要:
download () { let link = document.createElement('a') l ink.style.display = 'none' let url = `.....`//绝对地址 link.href = url link.download = '' //文件名 doc 阅读全文
摘要:
1. yarn add webpack-bundle-analyzer cross-env -D webpack.config.prod.js文件或者是其他配置文件 const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') 阅读全文