安装。如果clone慢的话可以换源
git clone --depth=1 https://github.com/vueComponent/ant-design-vue-pro.git my-project
cd my-project
本地开发
yarn install
yarn run serve
yarn install遇到的问题:node版本不匹配
The engine "node" is incompatible with this module. Expected version "^14.18.0 || ^16.14.0 || >=18.0.0". Got "17.9.0"
解决办法:使用如下命令忽略错误再执行命令
yarn config set ignore-engines true