ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

(一)alement-ui安装和引用

2022-04-17 04:00:25  阅读:425  来源: 互联网

标签:npm yarn element add alement ui 引用 install


1:安装命令

yarn add element-ui --save

2:删除

yarn remove element-ui --save

安装如果出现下面问题:

error Couldn't find package "fsevents@~2.3.2" required by "chokidar@^3.5.3" on the "npm" registry.

解决方法:

找到package.json,移除  "dependencies": {}  节点

然后:npm install=>yarn install=>yarn add element-ui,然后会重新生成"dependencies": {} 节点=>然后刚刚移除的内容拷贝到"dependencies": {} 节点下面

=>然后在yarn install(呢时候就不能在npm install了,否则 ERR! While resolving: webapiroots@0.1.0报错)

=>如果要npm install就移除package.json里面的 "element-ui": "^2.15.8"  

=>再次安装element-ui不能用npm install element-ui --save 只能 yarn add element-ui 否则会报错

npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps

=>如果yarn add element-ui报下面的错

error An unexpected error occurred: "https://registry.yarnpkg.com/element-ui: connect ETIMEDOUT 104.16.16.35:443".
info If you think this is a bug, please open a bug report with the information provided in "E:\\vscode\\vue\\vue\\vue\\vue\\webapiroots3diyipian\\yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.

重复上面的操作

找到package.json,移除  "dependencies": {}  节点,在npm install=>yarn install=>yarn add element-ui,然后会重新生成"dependencies": {} 节点=>然后刚刚移除的内容拷贝到"dependencies": {} 节点下面

 

标签:npm,yarn,element,add,alement,ui,引用,install
来源: https://www.cnblogs.com/yingxianqi/p/16154918.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有