- v-bind(简写 :)
组件属性中要使用data中定义的数据变量,或组件属性要使用表达式,需用v-bind指定
简写 : - v-on(简写@)
监听DOM事件
click.stop 可以阻止事件穿透 - v-model
数据双向绑定 - v-if,v-else-if,v-else
条件判断,决定某个内容是否挂载 - v-show
条件判断,决定某个内容是否显示 - 三元运算符
- 空标签 block
- v-for:列表渲染
<template>
<view v-bind:class="msg" v-bind:data="1+2">
{{msg}} world!-{{num}}
<button v-on:click="show">点我</button>
<input v-model="msg" />
<view v-if="flag">vue</view>
<view v-else>H5</view>
<view>{{flag ? '显示':'隐藏'}}</view>
<block>
<text>block 空标签 </text>
</block>
<view v-for="(item, index) in arr">{{index+1}}:{{item}}</view>
<view @click="c1">
父级
<view @click.stop="c2">子级</view>
</view>
</view>
</template>
<script>
export default{
data(){
return {
msg:'hello',
arr:['vue','H5','CSS'],
flag:true,
num: 1
}
},
onLoad(){
setTimeout(()=>{
this.num++;
},2000)
},
methods:{
show(){
console.log('点了');
this.flag=!this.falg;
},
c1(){
console.log('我是父级');
},
c2(){
console.log('我是子级');
}
}
}
</script>