Recherche…


Paramètres

Fichiers ou paquets Commande ou configuration à modifier
babel-polyfill 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']

Remarques

Les configurations décrites ci-dessus, l'exemple utilisant une fonction non standardisée, fonctionneront sur "Internet Explorer" et le npm test passera.

Utilisation des fonctions pour polyfill (ex: 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow