今天正好新建了一个项目,在用less的时候就各种花样报错提示我: Failed to resolve loader: less-loaderYou may need to install it.Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'Error from chokidar (C:\): Error: EBUSY: resource busy or locked
downloadFile(url, fileName) { axios.get(url, { responseType: 'blob' }) .then(({ data }) => { // 为了简单起见这里blob的mime类型 固定写死了 let type = 'application/pdf;' //'image/png' let blob = new Blob([data], { type: type }) let link = document.createElement('a');