v-if
0
1
2
3
4
5
new Vue({
el:".he",
data:{
num:Math.floor(Math.random()*(5-0+1)+0)
}
})
v-html
{{msg}}
{{msg}}
{{msg}}
{{msg}}
new Vue({
el:".ta",
data:{
msg:"ni hao"
}
})
v-cloak
[v-cloak]{
display:none;
}
{{msg}}
new Vue({
el:".men",
data:{
msg:"hellow vue"
},
beforeMount:function(){
alert(111)
}
})
filter
{{12|addZero}}
//全局过滤器
Vue.filter("addZero",function(data){
if(data<10){
return '0'+data;
}else{
return data;
}
})
new Vue({
el:".le"
})