vue.js

(1)检查node版本 node -v
(2)安装vue-cli cnpm install -g vue-cli 检查是否安装成功 vue
(3)初始化项目 vue init webpack my-first-vue-project
(4)下载依赖 cnpm install
(5)运行vue环境 npm run dev

<div :class="{red:isRed}"></div>
<div :class="[classA,classB]"></div>
<div :class="[classA,{classB:isB,classC:isC}]"></div>

localStorage.setItem('type','1')
localStorage.getItem('type')

https://github.com/vuejs/vue-devtools

 

父子组件通信:
父:
{{childWords}}
<component-a msgfromfather='you die!' v-on:child-tell-me-something='ListenToMyBoy'></component-a>

methods: {

ListenToMyBoy:function(msg){

this.childWords=msg;

}

}

子:
<input type="button" value="clickme" v-on:click="clickme">
data () {

return {
msg: 'msg from hello113335655656'
}

},

props:['msgfromfather'],

methods :{

clickme (){
this.$emit('child-tell-me-something',this.msg);
}

}

转载于:https://www.cnblogs.com/gengxinnihaoma/p/7323576.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值