产品中ie11中的vue-cli3语法错误

时间:2019-03-20 02:52:22

标签: vue.js vue-cli-3

babel.config.js

module.exports = {
  presets: [
    [
      "@vue/app",
      {
        useBuiltIns: "entry",
      }
    ]
  ]
}

main.js

import '@babel/polyfill'

package.json

"browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ],

上面的配置是我的vue-cli3项目,class不是polyfill,为什么? enter image description here

第三方库

    "axios": "^0.18.0",
    "jsonp": "^0.2.1",
    "swiper": "^4.4.6",
    "video.js": "^7.4.1",
    "videojs": "^1.0.0",
    "vue": "^2.5.22",
    "vuex": "^3.0.1"

1 个答案:

答案 0 :(得分:1)

我自己解决了。事实证明这是swiper.js的问题。 但是,我已经将配置添加到vue.config.js,这是行不通的。

transpileDependencies: [
    'swiper'
],

是错误吗?