下面会用到的
删除 npm uninstall XXX
cnpm install XXX@2.0.0 -S
npm i XXX -S
原来版本
"element-ui": "^2.4.5",
想要更新到
"element-ui": "^2.11.0",
运行:cnpm install element-ui@2.11.0 -S
√ Installed 1 packages
√ Linked 0 latest versions
√ Run 0 scripts
√ All packages installed (used 139ms(network 137ms), speed 143.37kB/s, json 1(19.64kB), tarball 0B)
没有错误
运行:cnpm run dev
本来表格位置消失了,看到分页数据还是有的
image.png
找问题
一个更新时候忽视的问题
说你这个ui升级了 vue也要升级,那就升级一下
image.png运行:cnpm install vue@2.6.10 -S
再次运行,又出了错误
- vue@2.6.10
- vue-template-compiler@2.5.21
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
说要匹配如何如何
看了一下自己目前的
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.5.2",
再次安装这两个
image.pngcnpm install vue-template-compiler -S
cnpm install vue-loader -S
失败
继续玩耍了
网友评论