首先安装homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
开始安装
安装homebrew.png安装成功后
homebrew成功.png安装nodejs
brew install nodejs
安装nodejs.png
安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
安装cnpm.png
这里如果报错,就在命令前写上sudo 设定权限
sudo npm install -g cnpm --registry=https://registry.npm.taobao.org
安装webpack
cnpm install webpack -g
安装webpack.png
如果这里报错,同样在命令行之前写上sudo 设定权限
创建我们的工程
首先在桌面创建一个文件夹(first)
然后cd进这个文件夹:
cd /Users/liuking/Desktop/first
再执行
vue init webpack first
创建vue工程.png
再执行
cnpm install
创建vue工程.png
最后
cnpm run dev
大功告成.png
网友评论