Error解决 Vue2.x 与最新 Ant Design vue 版本不符的问题
Posted 王同学要努力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Error解决 Vue2.x 与最新 Ant Design vue 版本不符的问题相关的知识,希望对你有一定的参考价值。
解决 Vue2.x 与最新 Ant Design vue 版本不符的问题
引用Ant Design vue
项目一直报错,如果我们 要使用 Vue2.x
来开发项目时,就必须安装指定 Ant Design vue
的版本号, 否则会报错。
解决方案
如果您已经安装了,请先通过 npm uninstall
进行卸载 Ant Design vue
。
npm uninstall --save ant-design-vue
您可以打开项目根目录 package.json
,查看一下它们的版本:
Vue2 需要与 1.x 的 Ant design vue 版本进行对应。
然后通过 @
指定版本号即可,执行如下命令:
npm i ant-design-vue@1.7.8
👏👏👏成功解决!
以上是关于Error解决 Vue2.x 与最新 Ant Design vue 版本不符的问题的主要内容,如果未能解决你的问题,请参考以下文章