报错:Uncaught Error: Cannot find module ‘core-js/library/fn/object/assign‘

情况描述:

在项目中,vuepress写文档说明时,加载element-ui报错 

enhanceApp.js文件中,将Vue.use(ElementUI);注释掉就不报错了,但我要利用elementui做demo,所以是必须要加上的报错:Uncaught Error: Cannot find module ‘core-js/library/fn/object/assign‘_第1张图片

原因:

项目中的core-js的版本不同所致,我的项目core-js是3.x的,vuepress中运行element要2.x

解决方法:

两个办法:

1、如果不影响的话,将项目中的core-js降为"core-js": "^2.6.12"亲测有效

2、项目的core-js版本不能改变:npm install [email protected] (亲测有效)

你可能感兴趣的:(vuepress,js,javascript,node.js,vue.js,vuepress)