# 最新稳定版
$ npm install vue
# 全局安装 vue-cli
$ npm install --global vue-cli
# 创建一个基于 webpack 模板的新项目
$ vue init webpack my-project
# 安装依赖,走你
$cdmy-project
$ npm install
$ npm run dev
重要: Github 仓库的/dist文件夹只有在新版本发布时才会更新。如果想要使用 Github 上 Vue 最新的源码,你需要自己构建。
gitclonehttps://github.com/vuejs/vue.git node_modules/vue
cdnode_modules/vue
npm install
npm run build
http://cn.vuejs.org/v2/guide/installation.html
http://www.open-open.com/lib/view/open1476240930270.html