Vue.js 응용 프로그램에서 Excel 파일을 올바르게 다운로드하는 방법은 무엇입니까? 다운로드에 어려움을 겪고 있습니다.Excel줄을 지어 들어가다xlsx내 형식Vue.js어플.내 Vue.js 애플리케이션은 원격 SFTP 서버에서 Excel 파일을 다운로드하는 Node.js 애플리케이션에 게시 요청을 합니다.백엔드 애플리케이션은 문제 없이 작동합니다. Vue.js 애플리케이션에서 다음 코드를 사용합니다. axios.post(config.backendHost + '/excel', { file_name: fileName }).then((response) => { const url = URL.createObjectURL(new Blob([response.data], { type: 'application/v..