-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
vue.js开发与webpack调试
1 webpack开发环境搭建
https://github.com/vuejs-templates/webpack
1.1 搭建步骤
- 把github.com/vuejs-templates/webpack整个应用clone下来。
//npm安装全局vue模块
$ npm install -g vue-cli
//创建应用环境
$ vue init webpack my-project
//进入应用环境
$ cd my-project
//加载应用环境依赖
$ npm install
//进入开发模式
$ npm run dev