Vue.js
ポリフィル "ウェブパック"テンプレート
サーチ…
パラメーター
ファイルまたはパッケージ | 変更するコマンドまたは設定 |
---|---|
バベルポリ充填 | 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