1、node环境
详细见我之前的文章,
2、git环境
git bash命令窗,支持bash命令,cmd不支持bash命令
3、cnpm安装
cnpm是针对国内使用npm网络慢的而使用的
在cmd中输入:
npm install -g cnpm --registry=https://registry.npm.taobao.org
如果node的版本比较低,会执行不成功。需要升级node的版本,直接下载最新的node覆盖安装4、下载vue.min.js和vue-resource.min.js
这是使用cnpm的方式
打开git bash,输入:cnpm install vue
输入:cnpm install vue-resource
将下载到的vue.min.js和vue-resource.min.js放到项目中
5、截图说明
将title的值在data中绑定为hello vue,然后执行cartView方法,将title值修改为Vue hello
6、index.html
Title { {title}}
7、cart.js
/** * Created by kk on 2017/4/16. */var vm =new Vue({ el:"#app", data:{ title:"hello vue" }, filters:{ }, mounted:function () { //类似于jquery中的ready方法 this.cartView(); }, methods:{ cartView:function () { this.title="Vue hello"} }});