vue excel down1 Vue.js xlsx ์์ ๋ค์ด๋ก๋ Vue ์์ ๋ค์ด๋ก๋ ์๋ฒ๋ฅผ ๊ฑฐ์น์ง ์๊ณ ํ๋ฉด ์์์ xlsx ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ฌ์ฉํด ์์ ๋ค์ด๋ก๋๋ฅผ ํ๋ ๋ฐฉ๋ฒ์ด๋ค. xlsx ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ค์น npm install --save xlsx xlsx ๋ฅผ ์ฌ์ฉํ ์์ ๋ค์ด๋ก๋ ๊ธฐ๋ฅ ๊ตฌํ import xlsx from 'xlsx'; ... excelDownload() { const fileName = 'excelFile';// ํ์ผ๋ช const sheetName = 'sheet1';// ์ํธ๋ช const header = [['์ด๋ฆ', '๋์ด', '์ด๋ฉ์ผ']];// ์ปฌ๋ผ๋ช const list = [{ name: 'ํ๊ธธ๋', age: 15, email: 'ํ๊ธธ๋@naver.com' }, { name: '๊น๊ธธ๋', age: 44, email: '๊น๊ธธ๋@naver.com'.. 2022. 6. 16. ์ด์ 1 ๋ค์