Sök…


parametrar

Filer eller paket Kommando eller konfiguration att ändra
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']

Anmärkningar

Konfigurationerna som beskrivs ovan, exemplet med en icke-standardiserad funktion fungerar på "internet explorer" och npm test kommer att passera.

Användning av funktioner för polyfyllning (ex: hitta)

<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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow