使Vuetify在IE11中正常工作

时间:2018-03-02 06:14:48

标签: vuetify.js webpacker babel-polyfill

我们的应用程序(https://web.hashlearn.com)是使用Vuetify工作构建的,并且在除IE11之外的所有浏览器中看起来都很棒(我们不支持< IE11)。这本质上是一个带有Webpacker,VueJS和Vuetify(0.16.9)的Rails应用程序。除了IE11中的一些问题外,大多数事情似乎都有效,图标只是没有出现在IE中。我尝试过多种方法,包括:

  1. 通过npm安装并包含babel-polyfill并将其导入我们的application.js
  2. 按照此处的建议,通过Webpacker条目配置包含babel-polyfill:https://github.com/rails/webpacker/issues/523#issuecomment-309871748
  3. .babelrc

    {
      "presets": [
        ["env", {
          "modules": false,
          "targets": {
            "browsers": "> 1%",
            "node": "current",
            "uglify": true
          },
          "useBuiltIns": true
        }]
      ],
    
      "plugins": [
        "transform-object-rest-spread",
        "syntax-dynamic-import",
        ["transform-class-properties", { "spec": true }],
        ["transform-runtime", { "polyfill": false, "regenerator": true }]
      ]
    }
    

    有人遇到过这类问题吗?你是怎么解决这个问题的? GitHub中报告的大多数问题似乎没有适当的解决方案。

0 个答案:

没有答案