我不确定我在做什么错。我有VueJs 3和Vuetify。与Chrome和Firefox搭配使用时效果很好,但无法在IE和Edge中加载。我正在尝试使用Babel加载polyfill,并强制Vue CLI转换Vuetify的依赖项。

package.json

"babel": {
  "presets": [
    [
      "@babel/preset-env",
      {
        "useBuiltIns": "entry"
      }
    ]
  ]
}

vue.config.js
module.exports: {
  transpileDependencies: ['vuetify']
}

主要
import 'core-js/es6';
import 'regenerator-runtime/runtime';

导入包含在我的main.ts文件的顶部。我一直在使用官方文档进行设置。

我在这里想念什么?

最佳答案

如果您使用vue-cli创建了项目,并使用vue add vuetify添加了vuetify,那么使其在Edge中工作的解决方案应该是将transpileDependencies: ['vuetify']添加到vue.config.js文件中。

但就我而言,我将vue/vuetify添加到了一个已经存在的项目中,并且没有使用vue-cli。为了使其正常工作,我安装了core-js npm install core-js@2 --save并将其添加到我的webpack.config.js中的规则中

{
    test: /\.js$/,
    exclude: /node_modules\\(?!(vuetify)).*/,
    use: [
        {
            loader: 'babel-loader',
            options: {
                configFile: './babel.config.js',
            }
        }
    ]
}

然后,我将babel.config.js文件添加到项目的根目录。
module.exports = {
    presets: [
        ['@babel/preset-env', {
            debug: true,
            useBuiltIns: 'usage',
            corejs: { "version": 2, "proposals": true }
        }],
    ],
    plugins: [
        '@babel/plugin-proposal-object-rest-spread',
        '@babel/plugin-transform-spread',
    ]
}

回复有点晚,但是我在其他任何地方都找不到此解决方案,这是我自己搜索时出现的第一批帖子之一。所以我想在这里发布对我有用的内容。

关于vue.js - VueJs 3 + Vuetify : Not working in IE and Edge,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58170297/

10-12 12:57