babel-polyfill1 Vuetify IE 11적용 [사용 환경] - Vue-Cil 로 Vue, Vuetify 설치 - WebPack 미 설치 1. babel polyfill설치 node cmd > $npm install --save @babel/polyfill 2. 프로젝트 폴더 > src > main.js에 구문 추가 import '@babel/polyfill'; 3. 프로젝트 폴더 > babel.config.js 파일 생성 module.exports = { presets: [ [ '@vue/app', { "useBuiltIns": "entry" } ] ] } 4. 프로젝트 폴더 > .babelrc 파일 생성 { "presets": [ "@babel/preset-env" ] } 5. 프로젝트 폴더 > vue.config.js에 구문 추가 const a.. 2020. 3. 1. 이전 1 다음