初学Vue遇到的问题及解决

一. Vue2.x升级3.x
首先执行命令 npm uninstall -g vue-cli卸载旧版本。
然后执行命令 npm install -g @vue-cli。
vue -V 查看当前版本。
Vue2.x创建项目的命令:vue init webpack xxx。
Vue3.x创建项目的命令:vue create xxx。
二.创建项目时报错:
npm ERR! Unexpected end of JSON input while parsing near '...'
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/apple/.npm/_logs/2019-05-22T03_14_59_254Z-debug.log
ERROR command failed: npm install --loglevel error --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist
解决办法:
1、npm install chromedriver --
chromedriver_cdnurl=http://cdn.npm.taobao.org/dist/chromedriver
2、npm cache clean --force
我遇到的问题就解决了

你可能感兴趣的:(初学Vue遇到的问题及解决)