如果运行使用elementui的项目时,出现Error: .presets[0] must be a string,object,function at...

如果运行一个引入element的项目时,出现下面错误, 

如果运行使用elementui的项目时,出现Error: .presets[0] must be a string,object,function at..._第1张图片此时需要在babel.config.js里面修改一些代码

module.exports = {
 
  presets: [
 
    '@vue/cli-plugin-babel/preset',
 
    ["@babel/preset-env", { "modules": false }]
 
  ],
 
  "plugins": [
 
    [
 
      "component",
 
      {
 
        "libraryName": "element-ui",
 
        "styleLibraryName": "theme-chalk"
 
      }
 
    ]
 
  ]
 
}

复制上面的代码,替换你当前babel.config.js里面的代码就可以了

然后重新运行就好了。

如果运行使用elementui的项目时,出现Error: .presets[0] must be a string,object,function at..._第2张图片如果运行使用elementui的项目时,出现Error: .presets[0] must be a string,object,function at..._第3张图片

你可能感兴趣的:(报错,elementui,前端,javascript)