Vue.js
पॉलीफ़िल "वेबपैक" टेम्पलेट
खोज…
पैरामीटर
फाइलें या पैकेज | संशोधित करने के लिए कमांड या कॉन्फ़िगरेशन |
---|---|
कोलाहल-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'] |
टिप्पणियों
ऊपर वर्णित कॉन्फ़िगरेशन, एक गैर-sstandardised फ़ंक्शन का उपयोग करने वाला उदाहरण "इंटरनेट एक्सप्लोरर" पर काम करेगा और npm test
पास करेगा।
पॉलीफ़िल के लिए कार्यों का उपयोग (उदा: खोजें)
<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