[Vue warn]: Unknown custom element: <el-row> - did you register the component correctly? For recursi

babel.config.js 文件中

module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}

替换为

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

posted @ 2022-04-27 16:56  天天代码码天天  阅读(23)  评论(0)    收藏  举报  来源