Vue.js
Polyfill "webpack"템플릿
수색…
매개 변수
파일 또는 패키지 | 수정할 명령 또는 구성 |
---|---|
바벨 - 폴리필 | npm i -save babel-polyfill |
karma.conf.js | files: ['../../node_modules/babel-polyfill/dist/polyfill.js','./index.js'], |
webpack.base.conf.js | app: ['babel-polyfill', './src/main.js'] |
비고
위에서 설명한 구성, 표준이 아닌 함수를 사용하는 예제는 "Internet Explorer"에서 작동하며 npm test
가 통과합니다.
polyfill에 대한 함수 사용 (예 : find)
<template>
<div class="hello">
<p>{{ filtered() }}</p>
</div>
</template>
<script>
export default {
name: 'hello',
data () {
return {
list: ['toto', 'titi', 'tata', 'tete']
}
},
methods: {
filtered () {
return this.list.find((el) => el === 'tata')
}
}
}
</script>
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow