项目场景:
通过cmd打开vue ui并自定义创建项目中,引入了vue-cli-plugin-element插件,此时项目是vue cli3 的,与此版本有冲突,应该要下载vue-cli-plugin-element插件,如何卸载呢?
问题描述
安装的错误版本插件:vue2安装element-ui版本,vue3需要安装element-plus版本
应该要装的element插件:
浏览器报错Cannot read properties of undefined (reading 'prototype')
Cannot read properties of undefined (reading 'prototype')
Cannot read properties of undefined (reading 'use')
//use的情况是在main.js中出现Vue.use()语句,Vue3并不能提供Vue.use()接口,要改为app.use()
卸载情况:
此时通过在终端输入npm uninstall element-ui并不能删除,而且在node-modules文件下中依旧有此文件
解决方案:
npm uninstall element-ui --legacy-peer-deps
添加语句--legacy-peer-deps (忽视依赖冲突,继续安装,不覆盖之前的依赖),卸载成功问题解决!
再下载element-plus插件即可文章来源:https://www.toymoban.com/news/detail-512160.html
npm uninstall element-plus --legacy-peer-deps文章来源地址https://www.toymoban.com/news/detail-512160.html
到了这里,关于在vue ui 中下载的element插件如何卸载并安装element-plus的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!