본문 바로가기

공부/Vue.js

axios 사용한 excel 파일 다운로드 요청 파라미터의 responseType: 'blob' 를 사용하지 않으면, 엑셀파일이 정상적으로 열리지 않는다. GET 방식 downCsList(){ axios({ method: 'GET', url: 'http://localhost:9099/list/testDownload', responseType: 'blob' // 가장 중요함 }) .then(response =>{ const url = window.URL.createObjectURL(new Blob([response.data], { type: response.headers['content-type'] })); const link = document.createElement('a..
Vue PWA 빌드 에러 : Cannot find module 'chalk' 에러 : Vue PWA 빌드 에러 : Cannot find module 'chalk' 해결방법 : npm install chalknpm install each-asyncnpm install indent-string
Vue 프로젝트 npm 패키지 npm 패키지 vuerouter vuetify : vue add vuetify axios : npm install --save axios vue-axios : npm i vue-axios vue-json-tree-view : npm i vue-json-tree-viewicon추가 - npm install material-design-icons-iconfont -D
Vue CLI 웹팩 Vue CLI(Command Line Interface) 란? 뷰 코어팀에서 제공하는 일종의 터미널용 도구 node를 설치 후, Vue CLI 설치 install vue-cli -global Vue CLI 프로젝트 명령어 템플릿 종류 설명 vue init webpack 고급 웹팩 기능을 활용한 프로젝트 구성 방식, 테스팅, 문법 검사 등을 지원 vue init webpack-simple 웹팩 최소기능을 활용한 프로젝트 vue init sinple 최소 뷰 기능만 들어간 HTML파일 1개 생성 vue init pwa 웹팩 기반의 프로그래시브 웹 앱 기능을 지원하는 뷰 프로젝트 webpack 같은 모듈 번들러 프로젝트는 자체적으로 Vue로더를 포함함 Vue 로더는 .vue 확장자 파일을 html, js, c..