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