在已经安装了node.js的情况下,输入`
node -v
如果看到版本信息,说明node.js已经安装成功
1.安装cnpm:
npm install -g cnpm --registry=https://registry.npm.taobao.org
2.之后,使用cnpm安装vue.js的脚手架:
cnpm install --global vue-cli
3.创建Vue.js项目,并命名:
vue init webpack-simple demo1
然后连续按5次回车
4.项目新建后, 切换到项目目录下:
cd demo1
安装依赖
npm run dev
显示
Project is running at http://localhost:8080/
webpack output is served from /dist/
404s will fallback to /index.html
{ parser: “babylon” } is deprecated; we now treat it as { parser: “babel” }.
访问:http://localhost:8080/
看到初始页面,说明已经安装成功。